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

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

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