summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220120123700_add_tmp_index_routes_id_for_namespaces.rb
blob: 2b8cecd0e570e66428091ee94a6afd80cd734216 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class AddTmpIndexRoutesIdForNamespaces < Gitlab::Database::Migration[1.0]
  INDEX_NAME = 'tmp_index_for_namespace_id_migration_on_routes'

  disable_ddl_transaction!

  def up
    # Temporary index to be removed in 14.9
    # https://gitlab.com/gitlab-org/gitlab/-/issues/352353
    add_concurrent_index :routes, :id, where: "routes.namespace_id is null and routes.source_type = 'Namespace'", name: INDEX_NAME
  end

  def down
    remove_concurrent_index_by_name :routes, INDEX_NAME
  end
end