2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-07-29 04:56:24 -04:00
|
|
|
class RemoveTrackExternalRightClicks < ActiveRecord::Migration[5.2]
|
|
|
|
def up
|
|
|
|
execute "DELETE FROM site_settings WHERE name = 'track_external_right_clicks'"
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
raise ActiveRecord::IrreversibleMigration
|
|
|
|
end
|
|
|
|
end
|