Backend: Updated project sql.

This commit is contained in:
Yohan Boujon 2024-01-30 07:37:48 +01:00
parent 820c777494
commit 5b0db880a0

View file

@ -13,6 +13,9 @@ CREATE TABLE public.project (
info_id int4 NOT NULL, info_id int4 NOT NULL,
picture_name text NULL, picture_name text NULL,
type_project 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_pkey PRIMARY KEY (id),
CONSTRAINT project_fk FOREIGN KEY (info_id) REFERENCES public.info(id) CONSTRAINT project_fk FOREIGN KEY (info_id) REFERENCES public.info(id)
); );