discourse/db/migrate/20220927171707_disable_allow_uncategorized_new_sites.rb
Martin Brennan 6b9dd22ba7
DEV: Use Migration::Helpers.existing_site? for other migrations (#20949)
Followup to f3402be262, adds
the new helper to two other core migrations that need it.
2023-04-05 07:28:56 +08:00

17 lines
488 B
Ruby

# frozen_string_literal: true
class DisableAllowUncategorizedNewSites < ActiveRecord::Migration[7.0]
def up
# keep allow uncategorized for existing sites
execute <<~SQL if Migration::Helpers.existing_site?
INSERT INTO site_settings(name, data_type, value, created_at, updated_at)
VALUES('allow_uncategorized_topics', 5, 't', NOW(), NOW())
ON CONFLICT (name) DO NOTHING
SQL
end
def down
raise ActiveRecord::IrreversibleMigration
end
end