debian-mirror-gitlab/db/migrate/20210908060951_add_dast_schedules_to_plan_limits.rb
2021-11-11 11:23:49 +05:30

8 lines
213 B
Ruby

# 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