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

20200323134519_add_api_indexes_for_archived_projects.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cacf427dbe4030326c96c1169bd2280b83563a44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 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