Files
discourse/db/migrate/20150205032808_reset_application_requests.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
226 B
Ruby
Raw Normal View History

# 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