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/migrate/20200323134519_add_api_indexes_for_archived_projects.rb')
-rw-r--r--db/migrate/20200323134519_add_api_indexes_for_archived_projects.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/db/migrate/20200323134519_add_api_indexes_for_archived_projects.rb b/db/migrate/20200323134519_add_api_indexes_for_archived_projects.rb
deleted file mode 100644
index cacf427dbe4..00000000000
--- a/db/migrate/20200323134519_add_api_indexes_for_archived_projects.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-# frozen_string_literal: true
-
-class AddApiIndexesForArchivedProjects < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- PUBLIC_AND_ARCHIVED_INDEX_NAME = "index_projects_api_created_at_id_for_archived_vis20"
- ARCHIVED_INDEX_NAME = "index_projects_api_created_at_id_for_archived"
-
- disable_ddl_transaction!
-
- def up
- add_concurrent_index :projects, [:created_at, :id],
- where: "archived = true AND visibility_level = 20 AND pending_delete = false",
- name: PUBLIC_AND_ARCHIVED_INDEX_NAME
-
- add_concurrent_index :projects, [:created_at, :id], where: "archived = true AND pending_delete = false",
- name: ARCHIVED_INDEX_NAME
- end
-
- def down
- remove_concurrent_index_by_name :projects, ARCHIVED_INDEX_NAME
-
- remove_concurrent_index_by_name :projects, PUBLIC_AND_ARCHIVED_INDEX_NAME
- end
-end