Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20220906155105_add_start_time_and_end_time_and_status_to_ml_candidates.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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