Migrate existing `open_registrations` setting to the new `registrations_mode` (#10269)
* Migrate existing `open_registrations` setting to the new `registrations_mode` Fixes #10263 * Remove unrelated db changes that have creeped inth-downstream
parent
457cfafad4
commit
bd3ad7fd16
@ -0,0 +1,15 @@
|
|||||||
|
class MigrateOpenRegistrationsSetting < ActiveRecord::Migration[5.2]
|
||||||
|
def up
|
||||||
|
open_registrations = Setting.find_by(var: 'open_registrations')
|
||||||
|
return if open_registrations.nil? || open_registrations.value
|
||||||
|
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?
|
||||||
|
setting = Setting.where(var: 'open_registrations').first_or_initialize(var: 'open_registrations')
|
||||||
|
setting.update(value: registrations_mode.value == 'open')
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in new issue