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

20220516201245_add_security_policy_scan_execution_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: 733ac971b98b3a47c28c1c7ff4a66066897c6943 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddSecurityPolicyScanExecutionSchedulesToPlanLimits < Gitlab::Database::Migration[2.0]
  def up
    add_column(:plan_limits, :security_policy_scan_execution_schedules, :integer, default: 0, null: false)
  end

  def down
    remove_column(:plan_limits, :security_policy_scan_execution_schedules)
  end
end