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

8 lines
206 B
Ruby
Raw Normal View History

# frozen_string_literal: true
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