osem-fcy/db/migrate/20130712072609_add_attended_to_registrations.rb

6 lines
145 B
Ruby
Raw Normal View History

class AddAttendedToRegistrations < ActiveRecord::Migration
def change
2014-07-21 14:49:05 +02:00
add_column :registrations, :attended, :boolean, default: 0
end
end