osem-fcy/db/migrate/20130712072609_add_attended_to_registrations.rb
2014-07-21 15:05:58 +02:00

5 lines
145 B
Ruby

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