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

20210317210338_add_valid_runner_registrars.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 61663836d393b4b424c41c1614a75a6094770c8f (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddValidRunnerRegistrars < ActiveRecord::Migration[6.0]
  def change
    add_column :application_settings, :valid_runner_registrars, :string, array: true, default: %w(project group)
  end
end