osem-fcy/db/migrate/20130821094246_add_volunteer_to_registrations.rb

6 lines
135 B
Ruby
Raw Normal View History

class AddVolunteerToRegistrations < ActiveRecord::Migration
def change
add_column :registrations, :volunteer, :boolean
end
end