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

20200930132319_add_api_fuzzing_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: 9be79974ee461b0764ec01cccaa288bd9c55d509 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddApiFuzzingToPlanLimits < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :plan_limits, "ci_max_artifact_size_api_fuzzing", :integer, default: 0, null: false
  end
end