Create Participe table
This commit is contained in:
parent
0061d4e723
commit
c12d97046c
1 changed files with 7 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue