clarion/db/migrate/20141012110528_add_acceptan...

7 lines
212 B
Ruby

class AddAcceptanceEmailFieldsToEvents < ActiveRecord::Migration[4.2]
def change
add_column :events, :acceptance_notification_sent_at, :timestamp
add_column :events, :confirmed_at, :timestamp
end
end