summaryrefslogtreecommitdiff
path: root/db/post_migrate/20230503032750_remove_redundant_index_from_container_repositories.rb
blob: a538dc054bbd8d0ee13702417528ba20b7c1b15e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

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

  INDEX_NAME = 'index_container_repositories_on_project_id'

  def up
    remove_concurrent_index_by_name :container_repositories, INDEX_NAME
  end

  def down
    add_concurrent_index :container_repositories, :project_id, name: INDEX_NAME
  end
end