Create Publie_Scientifique table
This commit is contained in:
parent
3a60500222
commit
5da1875ba6
1 changed files with 8 additions and 0 deletions
|
@ -8,6 +8,14 @@ CREATE TABLE Personnel
|
|||
date_de_recrutement date,
|
||||
);
|
||||
|
||||
|
||||
CREATE Publie_Scientifique(
|
||||
idPublication INT NOT NULL,
|
||||
idScientifique INT NOT NULL,
|
||||
FOREIGN KEY (idPublication) REFERENCES Publication(idPublication),
|
||||
FOREIGN KEY (idScientifique) REFERENCES Scientifique(idScientifique)
|
||||
);
|
||||
|
||||
CREATE Publie_Doctorant(
|
||||
idPublication INT NOT NULL,
|
||||
idDoctorant INT NOT NULL,
|
||||
|
|
Loading…
Reference in a new issue