summaryrefslogtreecommitdiff
path: root/db/migrate/20230424122236_add_ci_build_id_to_ml_candidate.rb
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