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

20230110172751_add_partial_index_on_group_path_id.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2135f241fd1945dc0e93d8cede234d4c91e5ede3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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