summaryrefslogtreecommitdiff
path: root/db/migrate/20220811092246_create_ml_candidate_metrics.rb
blob: a4d417f270effe07c052d9dfe89e8a6ab75ead33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

class CreateMlCandidateMetrics < Gitlab::Database::Migration[2.0]
  def change
    create_table :ml_candidate_metrics do |t|
      t.timestamps_with_timezone null: false
      t.references :candidate,
                   foreign_key: { to_table: :ml_candidates },
                   index: true
      t.float :value
      t.integer :step
      t.binary :is_nan
      t.text :name, limit: 250, null: false
    end
  end
end