Commit 8c3df625 authored by Andreas Brandl's avatar Andreas Brandl

Fix ce-to-ee merge conflicts for migration.

parent 45fdfaa3
...@@ -20,10 +20,7 @@ class DeleteInconsistentInternalIdRecords < ActiveRecord::Migration ...@@ -20,10 +20,7 @@ class DeleteInconsistentInternalIdRecords < ActiveRecord::Migration
delete_internal_id_records('milestones', 'project_id') delete_internal_id_records('milestones', 'project_id')
delete_internal_id_records('milestones', 'namespace_id', 'group_id') delete_internal_id_records('milestones', 'namespace_id', 'group_id')
delete_internal_id_records('ci_pipelines', 'project_id') delete_internal_id_records('ci_pipelines', 'project_id')
<<<<<<< HEAD
delete_internal_id_records('epics', 'namespace_id', 'group_id') delete_internal_id_records('epics', 'namespace_id', 'group_id')
=======
>>>>>>> upstream/master
end end
end end
......
...@@ -120,7 +120,6 @@ describe DeleteInconsistentInternalIdRecords, :migration do ...@@ -120,7 +120,6 @@ describe DeleteInconsistentInternalIdRecords, :migration do
expect { migrate! }.not_to change { internal_id_query.call(group3).size } expect { migrate! }.not_to change { internal_id_query.call(group3).size }
end end
end end
<<<<<<< HEAD
context 'for milestones (by group)' do context 'for milestones (by group)' do
# epics (by group) is a little different than most of the other models # epics (by group) is a little different than most of the other models
...@@ -160,6 +159,4 @@ describe DeleteInconsistentInternalIdRecords, :migration do ...@@ -160,6 +159,4 @@ describe DeleteInconsistentInternalIdRecords, :migration do
expect { migrate! }.not_to change { internal_id_query.call(group3).size } expect { migrate! }.not_to change { internal_id_query.call(group3).size }
end end
end end
=======
>>>>>>> upstream/master
end end
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