Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20210922084115_concurrent_index_resource_group_status_commit_id_for_ci_builds.rb')
-rw-r--r--db/post_migrate/20210922084115_concurrent_index_resource_group_status_commit_id_for_ci_builds.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/db/post_migrate/20210922084115_concurrent_index_resource_group_status_commit_id_for_ci_builds.rb b/db/post_migrate/20210922084115_concurrent_index_resource_group_status_commit_id_for_ci_builds.rb
deleted file mode 100644
index 922a9b64b55..00000000000
--- a/db/post_migrate/20210922084115_concurrent_index_resource_group_status_commit_id_for_ci_builds.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-# frozen_string_literal: true
-
-class ConcurrentIndexResourceGroupStatusCommitIdForCiBuilds < Gitlab::Database::Migration[1.0]
- INDEX_NAME = 'index_ci_builds_on_resource_group_and_status_and_commit_id'
-
- disable_ddl_transaction!
-
- # Indexes were pre-created on gitlab.com to avoid slowing down deployments
- # See: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/70279
-
- # rubocop: disable Migration/PreventIndexCreation
- def up
- add_concurrent_index :ci_builds, [:resource_group_id, :status, :commit_id],
- where: 'resource_group_id IS NOT NULL',
- name: INDEX_NAME
- end
- # rubocop: enable Migration/PreventIndexCreation
-
- def down
- remove_concurrent_index_by_name :ci_builds, INDEX_NAME
- end
-end