mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 15:35:12 +08:00
15 lines
283 B
Ruby
15 lines
283 B
Ruby
|
# frozen_string_literal: true
|
||
|
#
|
||
|
class RemoveGlimmerHeaderModeSetting < ActiveRecord::Migration[7.1]
|
||
|
def up
|
||
|
execute <<~SQL
|
||
|
DELETE FROM site_settings
|
||
|
WHERE name = 'glimmer_header_mode'
|
||
|
SQL
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
raise ActiveRecord::IrreversibleMigration
|
||
|
end
|
||
|
end
|