summaryrefslogtreecommitdiff
path: root/db/migrate
diff options
context:
space:
mode:
authorAndreas Brandl <abrandl@gitlab.com>2019-06-12 17:03:52 +0000
committerAndreas Brandl <abrandl@gitlab.com>2019-06-12 17:03:52 +0000
commit803fe6501c604b5567f281f7662080c5b8626cf1 (patch)
treed5be1caba43c614438e0a1890d5889c46c21f3fb /db/migrate
parent07a9bdbfb44222c0c1510c5e028b23b8506fc095 (diff)
parent5c828f39d8074c9f91e9034ddac860834fbc7177 (diff)
downloadgitlab-ce-803fe6501c604b5567f281f7662080c5b8626cf1.tar.gz
Merge branch 'jc-migration-for-source-project-id' into 'master'
Fix null source_project_id in pool_repositories Closes gitaly#1653 See merge request gitlab-org/gitlab-ce!29157
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20190604184643_fix_pool_repository_source_project_id.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/db/migrate/20190604184643_fix_pool_repository_source_project_id.rb b/db/migrate/20190604184643_fix_pool_repository_source_project_id.rb
new file mode 100644
index 00000000000..30244760e6b
--- /dev/null
+++ b/db/migrate/20190604184643_fix_pool_repository_source_project_id.rb
@@ -0,0 +1,19 @@
+# frozen_string_literal: true
+
+# See http://doc.gitlab.com/ce/development/migration_style_guide.html
+# for more information on how to write migrations for GitLab.
+
+class FixPoolRepositorySourceProjectId < ActiveRecord::Migration[5.1]
+ include Gitlab::Database::MigrationHelpers
+
+ # Set this constant to true if this migration requires downtime.
+ DOWNTIME = false
+
+ def up
+ execute "UPDATE pool_repositories SET source_project_id = (SELECT MIN(id) FROM projects WHERE pool_repository_id = pool_repositories.id) WHERE pool_repositories.source_project_id IS NULL"
+ end
+
+ def down
+ # nothing to do her
+ end
+end