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/20221216232659_index_members_on_member_namespace_id_compound_sync.rb')
-rw-r--r--db/post_migrate/20221216232659_index_members_on_member_namespace_id_compound_sync.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/db/post_migrate/20221216232659_index_members_on_member_namespace_id_compound_sync.rb b/db/post_migrate/20221216232659_index_members_on_member_namespace_id_compound_sync.rb
deleted file mode 100644
index f37a1b694b4..00000000000
--- a/db/post_migrate/20221216232659_index_members_on_member_namespace_id_compound_sync.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-# frozen_string_literal: true
-
-class IndexMembersOnMemberNamespaceIdCompoundSync < Gitlab::Database::Migration[2.1]
- INDEX_NAME = 'index_members_on_member_namespace_id_compound'
-
- disable_ddl_transaction!
-
- def up
- add_concurrent_index(
- :members,
- [:member_namespace_id, :type, :requested_at, :id],
- name: INDEX_NAME
- )
- end
-
- def down
- remove_concurrent_index_by_name :members, INDEX_NAME
- end
-end