Merge branch 'master' of https://git.etud.insa-toulouse.fr/rbonnet/tp_bdd2
gaaabandonne la validation.
This commit is contained in:
commit
3a60500222
1 changed files with 7 additions and 0 deletions
|
@ -8,6 +8,13 @@ CREATE TABLE Personnel
|
||||||
date_de_recrutement date,
|
date_de_recrutement date,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
CREATE Publie_Doctorant(
|
||||||
|
idPublication INT NOT NULL,
|
||||||
|
idDoctorant INT NOT NULL,
|
||||||
|
FOREIGN KEY (idPublication) REFERENCES Publication(idPublication),
|
||||||
|
FOREIGN KEY (idDoctorant) REFERENCES Doctorant(idDoctorant)
|
||||||
|
);
|
||||||
|
|
||||||
CREATE TABLE Publie_Externe(
|
CREATE TABLE Publie_Externe(
|
||||||
idPublication INT NOT NULL,
|
idPublication INT NOT NULL,
|
||||||
idAuteurExterne INT NOT NULL,
|
idAuteurExterne INT NOT NULL,
|
||||||
|
|
Loading…
Reference in a new issue