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/20230110172751_add_partial_index_on_group_path_id.rb')
-rw-r--r--db/post_migrate/20230110172751_add_partial_index_on_group_path_id.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/db/post_migrate/20230110172751_add_partial_index_on_group_path_id.rb b/db/post_migrate/20230110172751_add_partial_index_on_group_path_id.rb
index c04b71835a2..2135f241fd1 100644
--- a/db/post_migrate/20230110172751_add_partial_index_on_group_path_id.rb
+++ b/db/post_migrate/20230110172751_add_partial_index_on_group_path_id.rb
@@ -5,9 +5,11 @@ class AddPartialIndexOnGroupPathId < Gitlab::Database::Migration[2.1]
INDEX_NAME = :index_groups_on_path_and_id
+ # rubocop:disable Migration/PreventIndexCreation
def up
add_concurrent_index :namespaces, [:path, :id], where: "type = 'Group'", name: INDEX_NAME
end
+ # rubocop:enable Migration/PreventIndexCreation
def down
remove_concurrent_index_by_name :namespaces, INDEX_NAME