mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:29:30 +08:00
BUGFIX: rename site_settings in the database too
This commit is contained in:
parent
3e7ae1c0f4
commit
bc5168c3c7
13
db/migrate/20140220160510_rename_site_settings.rb
Normal file
13
db/migrate/20140220160510_rename_site_settings.rb
Normal file
|
@ -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
|
Loading…
Reference in New Issue
Block a user