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.rb17
1 files changed, 0 insertions, 17 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
deleted file mode 100644
index 2135f241fd1..00000000000
--- a/db/post_migrate/20230110172751_add_partial_index_on_group_path_id.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# frozen_string_literal: true
-
-class AddPartialIndexOnGroupPathId < Gitlab::Database::Migration[2.1]
- disable_ddl_transaction!
-
- 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
- end
-end