osem-fcy/db/migrate/20160326075326_add_attended_to_events_registrations.rb
2016-04-26 16:11:40 +03:00

5 lines
175 B
Ruby

class AddAttendedToEventsRegistrations < ActiveRecord::Migration
def change
add_column :events_registrations, :attended, :boolean, default: false, null: false
end
end