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

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

class LimitProjectAndGroupVariables < Gitlab::Database::Migration[2.0]
  def change
    add_column(:plan_limits, :project_ci_variables, :integer, default: 200, null: false)
    add_column(:plan_limits, :group_ci_variables, :integer, default: 200, null: false)
  end
end