17 lines
350 B
Ruby
17 lines
350 B
Ruby
# rubocop:disable all
|
|
class FixTodos < ActiveRecord::Migration
|
|
def up
|
|
execute <<-SQL
|
|
DELETE FROM todos
|
|
WHERE todos.target_type IN ('Commit', 'ProjectSnippet')
|
|
OR NOT EXISTS (
|
|
SELECT *
|
|
FROM projects
|
|
WHERE projects.id = todos.project_id
|
|
)
|
|
SQL
|
|
end
|
|
|
|
def down
|
|
end
|
|
end
|