2023-07-12 17:47:08 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-15 06:10:43 +11:00
|
|
|
class MigrateOpenRegistrationsSetting < ActiveRecord::Migration[5.2]
|
|
|
|
def up
|
|
|
|
open_registrations = Setting.find_by(var: 'open_registrations')
|
|
|
|
return if open_registrations.nil? || open_registrations.value
|
2023-02-20 16:58:28 +11:00
|
|
|
|
2019-03-15 06:10:43 +11:00
|
|
|
setting = Setting.where(var: 'registrations_mode').first_or_initialize(var: 'registrations_mode')
|
|
|
|
setting.update(value: 'none')
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
registrations_mode = Setting.find_by(var: 'registrations_mode')
|
|
|
|
return if registrations_mode.nil?
|
2023-02-20 16:58:28 +11:00
|
|
|
|
2019-03-15 06:10:43 +11:00
|
|
|
setting = Setting.where(var: 'open_registrations').first_or_initialize(var: 'open_registrations')
|
|
|
|
setting.update(value: registrations_mode.value == 'open')
|
|
|
|
end
|
|
|
|
end
|