instiki/vendor/rails/activerecord/test/migrations/valid/3_innocent_jointable.rb

12 lines
270 B
Ruby
Raw Normal View History

2007-01-22 14:43:50 +01:00
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