2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 12:06:56 +08:00
|
|
|
class RenameSiteSettings < ActiveRecord::Migration[4.2]
|
2014-02-21 00:08:26 +08:00
|
|
|
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
|