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

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

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

  INDEX_NAME = "tmp_idx_vulns_on_converted_uuid"

  def up
    remove_concurrent_index_by_name(
      :vulnerability_occurrences,
      INDEX_NAME
    )
  end

  def down
    # no-op, the table is too big so we need to create the index asynchronously
  end
end