mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 11:58:27 +00:00
9 lines
160 B
Ruby
9 lines
160 B
Ruby
|
class RemoveUserActionPending < ActiveRecord::Migration[5.2]
|
||
|
def up
|
||
|
execute "DELETE FROM user_actions WHERE action_type = 14"
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
end
|
||
|
end
|