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

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

class AddVulnerabilityAttributesToScanResultPolicies < Gitlab::Database::Migration[2.1]
  def change
    add_column :scan_result_policies, :vulnerability_attributes, :jsonb, default: {}
  end
end