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

20180430101916_add_runner_type_to_ci_runners.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a74231e0f44a068a78d77429702f1683c6980d78 (plain)
1
2
3
4
5
6
7
8
9
class AddRunnerTypeToCiRunners < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :ci_runners, :runner_type, :smallint
  end
end