1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-08 20:49:50 +00:00
discourse/db/migrate/20150206004143_flush_application_requests.rb

9 lines
176 B
Ruby

class FlushApplicationRequests < ActiveRecord::Migration[4.2]
def up
# flush as enum changed
execute "TRUNCATE TABLE application_requests"
end
def down
end
end