mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-01 03:59:07 +08:00
Reveal Foundation theme and stop creating a Default for new instances. Instead, the Foundation should be set as the default.
10 lines
274 B
Ruby
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
|