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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20221212192452_add_uuid_column_to_sbom_occurrences.rb')
-rw-r--r--db/migrate/20221212192452_add_uuid_column_to_sbom_occurrences.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/db/migrate/20221212192452_add_uuid_column_to_sbom_occurrences.rb b/db/migrate/20221212192452_add_uuid_column_to_sbom_occurrences.rb
deleted file mode 100644
index 4b7162d66f1..00000000000
--- a/db/migrate/20221212192452_add_uuid_column_to_sbom_occurrences.rb
+++ /dev/null
@@ -1,7 +0,0 @@
-# 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