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

20211208111425_add_executor_type_column_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: 1e1fdbdb12235b65d0324729cd28e7daf6d8c6d9 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddExecutorTypeColumnToCiRunners < Gitlab::Database::Migration[1.0]
  def change
    add_column :ci_runners, :executor_type, :smallint, null: true
  end
end