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

6 lines
148 B
Ruby
Raw Normal View History

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