mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
08b790b3c2
this also pulls out the middleware into its own home and inserts in front
10 lines
190 B
Ruby
10 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
|