Remove stale GA site setting records from the DB.

This commit is contained in:
Guo Xiang Tan 2018-01-27 09:15:46 +08:00
parent 2d340d1122
commit 55f47491a4
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
class RemoveOldGaSiteSettings < ActiveRecord::Migration[5.1]
def up
execute "DELETE FROM site_settings WHERE name = 'ga_tracking_code'"
execute "DELETE FROM site_settings WHERE name = 'ga_domain_name'"
end
def down
raise ActiveRecord::IrreversibleMigration
end
end