BUGFIX: rename site_settings in the database too

This commit is contained in:
Régis Hanol 2014-02-20 17:08:26 +01:00
parent 3e7ae1c0f4
commit bc5168c3c7

View 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