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

20230206172702_add_match_on_inclusion_to_scan_result_policy.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bec3dfeca76c1e63132dd22fe84168cede6d14c1 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddMatchOnInclusionToScanResultPolicy < Gitlab::Database::Migration[2.1]
  enable_lock_retries!

  def change
    add_column :scan_result_policies, :match_on_inclusion, :boolean
  end
end