Files
discourse/db/migrate/20150205032808_reset_application_requests.rb
2017-09-25 13:48:58 +08:00

11 lines
195 B
Ruby

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