mirror of
https://github.com/discourse/discourse.git
synced 2026-07-29 15:54:48 -05:00
BUGFIX: rename site_settings in the database too
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
class RenameSiteSettings < ActiveRecord::Migration
|
||||
|
||||
def up
|
||||
execute "UPDATE site_settings SET name = 'allow_restore' WHERE name = 'allow_import'"
|
||||
execute "UPDATE site_settings SET name = 'topics_per_period_in_top_summary' WHERE name = 'topics_per_period_in_summary'"
|
||||
end
|
||||
|
||||
def down
|
||||
execute "UPDATE site_settings SET name = 'allow_import' WHERE name = 'allow_restore'"
|
||||
execute "UPDATE site_settings SET name = 'topics_per_period_in_summary' WHERE name = 'topics_per_period_in_top_summary'"
|
||||
end
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user