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

5 lines
148 B
Ruby

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