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

20230321170734_add_internal_id_to_ml_candidates.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f6ced91c0a869614b611fc0b5f03b315f8f7502a (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddInternalIdToMlCandidates < Gitlab::Database::Migration[2.1]
  def change
    add_column :ml_candidates, :internal_id, :bigint, null: true
  end
end