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
|