2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-11 21:04:42 +08:00
discourse/db/migrate/20150205032808_reset_application_requests.rb

10 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