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

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

class AddVulnerabilitiesToSbomOccurrences < Gitlab::Database::Migration[2.1]
  def change
    add_column :sbom_occurrences, :vulnerabilities, :jsonb, default: []
  end
end