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

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

class AddExternalEventDestinationLimitToPlanLimits < Gitlab::Database::Migration[1.0]
  def change
    add_column(:plan_limits, :external_audit_event_destinations, :integer, default: 5, null: false)
  end
end