discourse/db/migrate/20190402142223_disable_invite_only_sso.rb
Robin Ward 6ebadaed2c FIX: Do not allow invite_only and enable_sso at the same time
This functionality was never supported but before the new review queue
it didn't have any errors. Now the combination of settings is prevented
and existing sites with sso enabled will be migrated to remove invite
only.
2019-04-02 10:26:27 -04:00

10 lines
271 B
Ruby

class DisableInviteOnlySso < ActiveRecord::Migration[5.2]
def up
execute(<<~SQL)
UPDATE site_settings SET value = 'f'
WHERE name = 'invite_only'
AND EXISTS(SELECT 1 FROM site_settings WHERE name = 'enable_sso' AND value = 't')
SQL
end
end