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