aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb
blob: 4bd4b4714d460b0efe04ac3293d194a3e055c8d8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                                    









                                                         
   
class ValidWithTimestampsInnocentJointable < ActiveRecord::Migration
  def self.up
    create_table("people_reminders", :id => false) do |t|
      t.column :reminder_id, :integer
      t.column :person_id, :integer
    end
  end

  def self.down
    drop_table "people_reminders"
  end
end