2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2022-11-09 17:05:21 -03:00
|
|
|
class SetRegistrationDefaultsToFalse < ActiveRecord::Migration[4.2]
|
2013-02-16 13:30:53 +01:00
|
|
|
def up
|
2014-07-21 14:49:05 +02:00
|
|
|
change_column :registrations, :using_affiliated_lodging, :boolean, default: false
|
2013-02-16 13:30:53 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def down
|
|
|
|
|
end
|
|
|
|
|
end
|