instiki/vendor/rails/activerecord/test/migrations/missing/4_innocent_jointable.rb

12 lines
270 B
Ruby
Raw Normal View History

2007-02-10 00:12:31 +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