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

20230816210052_add_licenses_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: e6c7dac4a7837e53821cdba8e692becdfd6a4386 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

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