Create Participe table

This commit is contained in:
Bonnet Ronan 2022-11-30 16:36:19 +01:00
parent 0061d4e723
commit c12d97046c

View file

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