1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-07 03:39:34 +00:00
discourse/db/migrate/20150205032808_reset_application_requests.rb

11 lines
195 B
Ruby
Raw Normal View History

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