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/structure.sql')
-rw-r--r--db/structure.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/db/structure.sql b/db/structure.sql
index aad301f401c..c7651cd9dee 100644
--- a/db/structure.sql
+++ b/db/structure.sql
@@ -23597,6 +23597,8 @@ CREATE TABLE sbom_source_packages (
id bigint NOT NULL,
name text NOT NULL,
purl_type smallint NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
CONSTRAINT check_8fba79abed CHECK ((char_length(name) <= 255))
);