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

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

  TABLE_NAME = :software_licenses
  INDEX_NAME = 'tmp_index_for_software_licenses_spdx_identifier_cleanup'

  def up
    remove_concurrent_index_by_name(TABLE_NAME, INDEX_NAME)
  end

  def down
    add_concurrent_index TABLE_NAME, :spdx_identifier, where: 'spdx_identifier IS NULL', name: INDEX_NAME
  end
end