Files
wedding/db/migrate/20180329212947_add_confirmed_at_to_guests.rb
John Lees-Miller 6e82ba528b Make open source
2018-10-27 16:46:26 +01:00

8 lines
154 B
Ruby

class AddConfirmedAtToGuests < ActiveRecord::Migration[5.1]
def change
change_table :guests do |t|
t.datetime :confirmed_at
end
end
end