discourse/db/migrate/20150205032808_reset_application_requests.rb
2023-01-09 11:59:41 +00:00

12 lines
225 B
Ruby

# frozen_string_literal: true
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