mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
11 lines
190 B
Ruby
11 lines
190 B
Ruby
|
class ResetApplicationRequests < ActiveRecord::Migration
|
||
|
|
||
|
def up
|
||
|
# enum changed we need to clear the data
|
||
|
execute 'TRUNCATE TABLE application_requests'
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
end
|
||
|
end
|