summaryrefslogtreecommitdiff
path: root/db/migrate/20230321162810_add_project_id_to_ml_candidates.rb
blob: a8121f197d9409e818ad75992230f9ca953ab8c1 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddProjectIdToMlCandidates < Gitlab::Database::Migration[2.1]
  enable_lock_retries!

  def change
    add_column :ml_candidates, :project_id, :bigint, null: true
  end
end