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

20230627174139_add_index_to_pool_repositories.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bb0ea0609da19807ff2a40763bae89c9f6ae2be2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

class AddIndexToPoolRepositories < Gitlab::Database::Migration[2.1]
  disable_ddl_transaction!

  TABLE_NAME = :pool_repositories
  OLD_INDEX_NAME = :index_pool_repositories_on_disk_path
  NEW_INDEX_NAME = :unique_pool_repositories_on_disk_path_and_shard_id

  def up
    add_concurrent_index(TABLE_NAME, [:disk_path, :shard_id], name: NEW_INDEX_NAME, unique: true)

    remove_concurrent_index_by_name(TABLE_NAME, OLD_INDEX_NAME)
  end

  def down
    add_concurrent_index(TABLE_NAME, [:disk_path], name: OLD_INDEX_NAME, unique: true)

    remove_concurrent_index_by_name(TABLE_NAME, NEW_INDEX_NAME)
  end
end