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

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

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