mirror of
https://github.com/discourse/discourse.git
synced 2026-08-06 13:08:40 +08:00
11 lines
356 B
Ruby
Vendored
11 lines
356 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
class RenameSiteSettingDefaultTopics < ActiveRecord::Migration[5.2]
|
|
def up
|
|
execute "UPDATE site_settings SET name = 'reviewable_default_topics' WHERE name = 'flags_default_topics'"
|
|
end
|
|
|
|
def down
|
|
execute "UPDATE site_settings SET name = 'flags_default_topics' WHERE name = 'reviewable_default_topics'"
|
|
end
|
|
end
|