summaryrefslogtreecommitdiff
path: root/db/migrate/20210908060951_add_dast_schedules_to_plan_limits.rb
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