From 5b0db880a0a51d0978eb17579ca457b349c9159b Mon Sep 17 00:00:00 2001 From: Yohan Boujon Date: Tue, 30 Jan 2024 07:37:48 +0100 Subject: [PATCH] Backend: Updated project sql. --- backend/db/5_project.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/db/5_project.sql b/backend/db/5_project.sql index 58c9ecc..61309a9 100644 --- a/backend/db/5_project.sql +++ b/backend/db/5_project.sql @@ -13,6 +13,9 @@ CREATE TABLE public.project ( info_id int4 NOT NULL, picture_name text NULL, type_project text NULL, + report_link text NULL, + archive_link text NULL, + app_link text NULL, CONSTRAINT project_pkey PRIMARY KEY (id), CONSTRAINT project_fk FOREIGN KEY (info_id) REFERENCES public.info(id) ); \ No newline at end of file