mirror of
https://github.com/discourse/discourse.git
synced 2026-08-05 21:16:17 +08:00
11 lines
225 B
Ruby
Vendored
11 lines
225 B
Ruby
Vendored
# 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
|