8 lines
154 B
Ruby
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
|