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

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

class AddDependencyProxyTtlGroupPolicyWorkerCapacityToApplicationSettings < Gitlab::Database::Migration[1.0]
  def change
    add_column :application_settings,
               :dependency_proxy_ttl_group_policy_worker_capacity,
               :smallint,
               default: 2,
               null: false
  end
end