debian-mirror-gitlab/db/migrate/20230321170803_add_index_on_project_id_on_internal_id_to_ml_candidates.rb
2023-06-20 00:43:36 +05:30

16 lines
400 B
Ruby

# 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