summaryrefslogtreecommitdiff
path: root/db/migrate/20210901065504_add_index_on_name_and_id_to_public_groups.rb
blob: 77b9e5297a7a4a253f8f55232da35962655edad9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class AddIndexOnNameAndIdToPublicGroups < Gitlab::Database::Migration[1.0]
  INDEX_NAME = 'index_namespaces_public_groups_name_id'
  PUBLIC_VISIBILITY_LEVEL = 20

  disable_ddl_transaction!

  def up
    add_concurrent_index :namespaces, [:name, :id], name: INDEX_NAME,
      where: "type = 'Group' AND visibility_level = #{PUBLIC_VISIBILITY_LEVEL}"
  end

  def down
    remove_concurrent_index_by_name :namespaces, INDEX_NAME
  end
end