From c12d97046cb4057be5c7158c12435bdcf1790e8c Mon Sep 17 00:00:00 2001 From: Bonnet Ronan Date: Wed, 30 Nov 2022 16:36:19 +0100 Subject: [PATCH] Create Participe table --- personnel.sql | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/personnel.sql b/personnel.sql index 10788b1..9e3522e 100644 --- a/personnel.sql +++ b/personnel.sql @@ -8,6 +8,13 @@ CREATE TABLE Personnel date_de_recrutement date, ); +CREATE Participe( + idProjet INT NOT NULL, + idScientifique INT NOT NULL, + FOREIGN KEY (idProjet) REFERENCES Projet(idProjet), + FOREIGN KEY (idScientifique) REFERENCES Scientifique(idScientifique) +); + CREATE Preside( idCongres INT NOT NULL, idScientifique INT NOT NULL,