osem-fcy/db/migrate/20130712072609_add_attended_to_registrations.rb
2017-09-28 15:49:54 -07:00

5 lines
149 B
Ruby

class AddAttendedToRegistrations < ActiveRecord::Migration
def change
add_column :registrations, :attended, :boolean, default: false
end
end