gaaabandonne la validation.
This commit is contained in:
Olougouna Axel 2022-11-30 16:31:48 +01:00
commit 3a60500222

View file

@ -8,6 +8,13 @@ CREATE TABLE Personnel
date_de_recrutement date,
);
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,