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

20210908060951_add_dast_schedules_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: 85c7522d0065f61785de566aadaa6607821eaec0 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddDastSchedulesToPlanLimits < Gitlab::Database::Migration[1.0]
  def change
    add_column(:plan_limits, :dast_profile_schedules, :integer, default: 1, null: false)
  end
end