diff --git a/personnel.sql b/personnel.sql index 8802891..9bda5e4 100644 --- a/personnel.sql +++ b/personnel.sql @@ -1,6 +1,13 @@ CREATE TABLE Personnel (); +CREATE Publie_Doctorant( + idPublication INT NOT NULL, + idDoctorant INT NOT NULL, + FOREIGN KEY (idPublication) REFERENCES Publication(idPublication), + FOREIGN KEY (idDoctorant) REFERENCES Doctorant(idDoctorant) +); + CREATE TABLE Publie_Externe( idPublication INT NOT NULL, idAuteurExterne INT NOT NULL,