summaryrefslogtreecommitdiff
path: root/db/migrate/20160309140734_fix_todos.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20160309140734_fix_todos.rb')
-rw-r--r--db/migrate/20160309140734_fix_todos.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/db/migrate/20160309140734_fix_todos.rb b/db/migrate/20160309140734_fix_todos.rb
deleted file mode 100644
index 917055f5036..00000000000
--- a/db/migrate/20160309140734_fix_todos.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# rubocop:disable all
-class FixTodos < ActiveRecord::Migration[4.2]
- 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