debian-mirror-gitlab/db/migrate/20220616182001_create_sbom_components.rb
2022-08-13 15:12:31 +05:30

12 lines
297 B
Ruby

# frozen_string_literal: true
class CreateSbomComponents < Gitlab::Database::Migration[2.0]
def change
create_table :sbom_components do |t|
t.timestamps_with_timezone
t.integer :component_type, null: false, limit: 2
t.text :name, null: false, limit: 255
end
end
end