debian-mirror-gitlab/db/migrate/20160324020319_remove_todos_for_deleted_issues.rb
2016-06-16 23:09:34 +05:30

19 lines
392 B
Ruby

# rubocop:disable all
class RemoveTodosForDeletedIssues < ActiveRecord::Migration
def up
execute <<-SQL
DELETE FROM todos
WHERE todos.target_type = 'Issue'
AND NOT EXISTS (
SELECT *
FROM issues
WHERE issues.id = todos.target_id
AND issues.deleted_at IS NULL
)
SQL
end
def down
end
end