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

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

class CreatePipelineTriggersApplicationLimits < Gitlab::Database::Migration[1.0]
  def change
    add_column(:plan_limits, :pipeline_triggers, :integer, default: 25_000, null: false)
  end
end