discourse/db/migrate/20250714030525_remove_experimental_system_themes_site_setting.rb
Krzysztof Kotlarek d5693cd8f9
DEV: enable Foundation and stop Default (#33610)
Reveal Foundation theme and stop creating a Default for new instances.
Instead, the Foundation should be set as the default.
2025-07-15 11:16:11 +08:00

10 lines
274 B
Ruby

# frozen_string_literal: true
class RemoveExperimentalSystemThemesSiteSetting < ActiveRecord::Migration[7.2]
def up
execute "DELETE FROM site_settings WHERE name = 'experimental_system_themes'"
end
def down
raise ActiveRecord::IrreversibleMigration
end
end