summaryrefslogtreecommitdiff
path: root/db/migrate/20221212192452_add_uuid_column_to_sbom_occurrences.rb
blob: 4b7162d66f1ceb64c4aa68c779b5267ba0226450 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddUuidColumnToSbomOccurrences < Gitlab::Database::Migration[2.1]
  def change
    add_column :sbom_occurrences, :uuid, :uuid, null: false # rubocop:disable Rails/NotNullColumn
  end
end