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