summaryrefslogtreecommitdiff
path: root/db/migrate/20230321170803_add_index_on_project_id_on_internal_id_to_ml_candidates.rb
blob: 4c295972106ae5f558cef19f5e63aaef7e0a0453 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

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

  INDEX_NAME = 'index_ml_candidates_on_project_id_on_internal_id'

  def up
    add_concurrent_index :ml_candidates, [:project_id, :internal_id], name: INDEX_NAME
  end

  def down
    remove_concurrent_index_by_name :ml_candidates, INDEX_NAME
  end
end