osem-fcy/db/migrate/20130711044247_add_require_registration_to_events.rb

8 lines
173 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2013-07-11 07:43:52 +03:00
class AddRequireRegistrationToEvents < ActiveRecord::Migration
def change
add_column :events, :require_registration, :boolean
end
end