Commit dfdf22c7 authored by Stan Hu's avatar Stan Hu

Fix PostgreSQL implementation of migration

parent 5cacdc4e
--- ---
title: Fix migration for removing orphaned issues.moved_to_id values in MySQL title: Fix migration for removing orphaned issues.moved_to_id values in MySQL and PostgreSQL
merge_request: merge_request:
author: author:
type: fixed type: fixed
...@@ -15,7 +15,9 @@ class IssuesMovedToIdForeignKey < ActiveRecord::Migration ...@@ -15,7 +15,9 @@ class IssuesMovedToIdForeignKey < ActiveRecord::Migration
self.table_name = 'issues' self.table_name = 'issues'
def self.with_orphaned_moved_to_issues def self.with_orphaned_moved_to_issues
where('NOT EXISTS (SELECT true FROM issues WHERE issues.id = issues.moved_to_id)') # Be careful to use a second table here for comparison otherwise we'll null
# out all rows that don't have id == moved_to_id!
where('NOT EXISTS (SELECT true FROM issues b WHERE issues.moved_to_id = b.id)')
.where('moved_to_id IS NOT NULL') .where('moved_to_id IS NOT NULL')
end end
end end
......
...@@ -4,7 +4,7 @@ require Rails.root.join('db', 'migrate', '20171106151218_issues_moved_to_id_fore ...@@ -4,7 +4,7 @@ require Rails.root.join('db', 'migrate', '20171106151218_issues_moved_to_id_fore
# The schema version has to be far enough in advance to have the # The schema version has to be far enough in advance to have the
# only_mirror_protected_branches column in the projects table to create a # only_mirror_protected_branches column in the projects table to create a
# project via FactoryBot. # project via FactoryBot.
describe IssuesMovedToIdForeignKey, :migration, schema: 20171109115718 do describe IssuesMovedToIdForeignKey, :migration, schema: 20171114150259 do
let!(:issue_first) { create(:issue, moved_to_id: issue_second.id) } let!(:issue_first) { create(:issue, moved_to_id: issue_second.id) }
let!(:issue_second) { create(:issue, moved_to_id: issue_third.id) } let!(:issue_second) { create(:issue, moved_to_id: issue_third.id) }
let!(:issue_third) { create(:issue) } let!(:issue_third) { create(:issue) }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment