mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 01:58:12 +08:00
11 lines
195 B
Ruby
11 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
|