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

20191223124940_add_scheduling_type_to_ci_builds.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0cb42cdc328a03c7fc8e90b4c569ae67f84cb186 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddSchedulingTypeToCiBuilds < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :ci_builds, :scheduling_type, :integer, limit: 2
  end
end