instiki/vendor/rails/activerecord/test/fixtures/migrations_with_duplicate/3_innocent_jointable.rb
2007-01-22 07:43:50 -06:00

12 lines
270 B
Ruby

class InnocentJointable < 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