discourse/db/migrate/20210219171329_drop_old_sso_site_settings.rb
David Taylor f3aab19829
DEV: Promote historic post_deploy migrations (#16288)
This commit promotes all post_deploy migrations which existed in Discourse v2.7.13 (timestamp <= 20210328233843)

This reduces the likelihood of issues relating to migration run order

Also fixes a couple of typos in `script/promote_migrations`
2022-03-25 15:48:20 +00:00

36 lines
974 B
Ruby

# frozen_string_literal: true
class DropOldSsoSiteSettings < ActiveRecord::Migration[6.0]
def up
# These were copied to their new names in migrate/20210204135429_rename_sso_site_settings
execute <<~SQL
DELETE FROM site_settings
WHERE name IN (
'enable_sso',
'sso_allows_all_return_paths',
'enable_sso_provider',
'verbose_sso_logging',
'sso_url',
'sso_secret',
'sso_provider_secrets',
'sso_overrides_groups',
'sso_overrides_bio',
'sso_overrides_email',
'sso_overrides_username',
'sso_overrides_name',
'sso_overrides_avatar',
'sso_overrides_profile_background',
'sso_overrides_location',
'sso_overrides_website',
'sso_overrides_card_background',
'external_auth_skip_create_confirm',
'external_auth_immediately'
)
SQL
end
def down
raise ActiveRecord::IrreversibleMigration
end
end