Create Publie_Scientifique table

This commit is contained in:
Bonnet Ronan 2022-11-30 16:34:37 +01:00
parent 3a60500222
commit 5da1875ba6

View file

@ -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,