debian-mirror-gitlab/db/migrate/20221010201815_add_purl_type_to_sbom_components.rb
2023-01-12 18:35:48 +00:00

8 lines
178 B
Ruby

# frozen_string_literal: true
class AddPurlTypeToSbomComponents < Gitlab::Database::Migration[2.0]
def change
add_column :sbom_components, :purl_type, :smallint
end
end