~michaelforrest/use-case-mapper/trunk

« back to all changes in this revision

Viewing changes to vendor/rails/activerecord/test/migrations/interleaved/pass_1/3_innocent_jointable.rb

  • Committer: Michael Forrest
  • Date: 2010-10-15 16:28:50 UTC
  • Revision ID: michael.forrest@canonical.com-20101015162850-tj2vchanv0kr0dun
refrozeĀ gems

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
class InnocentJointable < ActiveRecord::Migration
 
2
  def self.up
 
3
    create_table("people_reminders", :id => false) do |t|
 
4
      t.column :reminder_id, :integer
 
5
      t.column :person_id, :integer
 
6
    end
 
7
  end
 
8
 
 
9
  def self.down
 
10
    drop_table "people_reminders"
 
11
  end
 
12
end
 
 
b'\\ No newline at end of file'