2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-05 08:59:27 +08:00
discourse/db/migrate/20130327185852_update_site_settings_for_hot.rb

9 lines
324 B
Ruby

class UpdateSiteSettingsForHot < ActiveRecord::Migration[4.2]
def up
execute "UPDATE site_settings SET value = REPLACE(value, 'popular|', 'latest|hot|') where name = 'top_menu'"
end
def down
execute "UPDATE site_settings SET value = REPLACE(value, 'latest|hot', 'popular|') where name = 'top_menu'"
end
end