class InnocentJointable

Public Class Methods

down() click to toggle source
# File activerecord/test/migrations/missing/4_innocent_jointable.rb, line 11
def self.down
  drop_table "people_reminders"
end
up() click to toggle source
# File activerecord/test/migrations/missing/4_innocent_jointable.rb, line 4
def self.up
  create_table("people_reminders", id: false) do |t|
    t.column :reminder_id, :integer
    t.column :person_id, :integer
  end
end