Create Participe_Externe table
This commit is contained in:
parent
09005adb76
commit
7858efcb7e
1 changed files with 7 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue