Create Participe_Externe table

This commit is contained in:
Bonnet Ronan 2022-11-30 16:25:03 +01:00
parent 09005adb76
commit 7858efcb7e

View file

@ -2,6 +2,13 @@ CREATE TABLE Personnel
();
CREATE TABLE Participe_Externe(
idProjet INT NOT NULL,
idPartenaire INT NOT NULL,
FOREIGN KEY (idProjet) REFERENCES Projet(idProjet),
FOREIGN KEY (idPartenaire) REFERENCES Partenaire(idPartenaire)
);
CREATE TABLE Organise (
idPortesOuverte INT NOT NULL,
idPersonnel INT NOT NULL,