osem-fcy/db/migrate/20130202102024_add_handicapped_access_to_registrations.rb

6 lines
177 B
Ruby
Raw Normal View History

class AddHandicappedAccessToRegistrations < ActiveRecord::Migration
def change
2014-07-21 14:49:05 +02:00
add_column :registrations, :handicapped_access_required, :boolean, default: false
end
end