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

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

class AddPlanLimitsMaxSizeCyclonedxReportColumn < Gitlab::Database::Migration[2.0]
  def change
    add_column :plan_limits, :ci_max_artifact_size_cyclonedx, :integer, null: false, default: 1
  end
end