2019-04-28 11:56:16 +03:00
|
|
|
class AddAcceptanceEmailFieldsToEvents < ActiveRecord::Migration[4.2]
|
2014-10-12 14:54:06 +03:00
|
|
|
def change
|
|
|
|
add_column :events, :acceptance_notification_sent_at, :timestamp
|
|
|
|
add_column :events, :confirmed_at, :timestamp
|
|
|
|
end
|
|
|
|
end
|