BigW Consortium Gitlab

20160309140734_fix_todos.rb 350 Bytes
# 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