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

20210614142311_add_running_container_scanning_max_size_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: 248fff6c42fd8d36e6622b81536548025ca2b523 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddRunningContainerScanningMaxSizeToPlanLimits < ActiveRecord::Migration[6.0]
  def change
    add_column :plan_limits, :ci_max_artifact_size_running_container_scanning, :integer, null: false, default: 0
  end
end