osem-fcy/db/migrate/20130216122155_set_registration_defaults_to_false.rb

11 lines
217 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class SetRegistrationDefaultsToFalse < ActiveRecord::Migration
def up
2014-07-21 14:49:05 +02:00
change_column :registrations, :using_affiliated_lodging, :boolean, default: false
end
def down
end
end