osem-fcy/db/migrate/20160326075326_add_attended_to_events_registrations.rb

6 lines
175 B
Ruby
Raw Normal View History

2016-04-22 18:18:46 +03:00
class AddAttendedToEventsRegistrations < ActiveRecord::Migration
def change
add_column :events_registrations, :attended, :boolean, default: false, null: false
end
end