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

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

class RemoveTmpIndexOnRoutesNamespaceIdColumn < Gitlab::Database::Migration[2.0]
  INDEX_NAME = 'tmp_index_for_namespace_id_migration_on_routes'

  disable_ddl_transaction!

  def up
    remove_concurrent_index_by_name :routes, INDEX_NAME
  end

  def down
    add_concurrent_index :routes,
      :id,
      where: "routes.namespace_id is null and routes.source_type = 'Namespace'",
      name: INDEX_NAME
  end
end