summaryrefslogtreecommitdiff
path: root/db/migrate/20220906155105_add_start_time_and_end_time_and_status_to_ml_candidates.rb
blob: 681388811396cf6dae78a5a5a2fd142357a59595 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddStartTimeAndEndTimeAndStatusToMlCandidates < Gitlab::Database::Migration[2.0]
  def change
    add_column :ml_candidates, :start_time, :bigint
    add_column :ml_candidates, :end_time, :bigint
    add_column :ml_candidates, :status, :smallint, default: 0, null: false
  end
end