2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-05 08:59:27 +08:00
discourse/db/migrate/20180127005644_remove_old_ga_site_settings.rb
2018-01-27 09:15:46 +08:00

10 lines
286 B
Ruby

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