discourse/db/migrate/20150205032808_reset_application_requests.rb
Sam 08b790b3c2 improve metrics gathered using in our traffic section
this also pulls out the middleware into its own home and inserts in front
2015-02-05 16:08:52 +11:00

11 lines
190 B
Ruby

class ResetApplicationRequests < ActiveRecord::Migration
def up
# enum changed we need to clear the data
execute 'TRUNCATE TABLE application_requests'
end
def down
end
end