diff --git a/personnel.sql b/personnel.sql index 3554057..6ee436e 100644 --- a/personnel.sql +++ b/personnel.sql @@ -8,6 +8,14 @@ CREATE TABLE Personnel date_de_recrutement date, ); + +CREATE Publie_Scientifique( + idPublication INT NOT NULL, + idScientifique INT NOT NULL, + FOREIGN KEY (idPublication) REFERENCES Publication(idPublication), + FOREIGN KEY (idScientifique) REFERENCES Scientifique(idScientifique) +); + CREATE Publie_Doctorant( idPublication INT NOT NULL, idDoctorant INT NOT NULL,