clarion/db/migrate/20141012110528_add_acceptance_email_fields_to_events.rb
2014-10-12 14:54:06 +03:00

7 lines
207 B
Ruby

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