Merge branch 'master' of https://git.etud.insa-toulouse.fr/rbonnet/tp_bdd2
This commit is contained in:
commit
d9b951d308
1 changed files with 7 additions and 0 deletions
|
@ -17,6 +17,13 @@ CREATE TABLE Scientifique(
|
||||||
PRIMARY KEY(idPersonnel)
|
PRIMARY KEY(idPersonnel)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
-- Nathan
|
||||||
|
CREATE Journee_Porte_Ouvertes(
|
||||||
|
idPorteOuverte INT NOT NULL,
|
||||||
|
FOREIGN KEY (idPorteOuverte) REFERENCES Evenement(idEvenement),
|
||||||
|
PRIMARY KEY (idPorteOuverte)
|
||||||
|
);
|
||||||
|
|
||||||
-- Nathan
|
-- Nathan
|
||||||
CREATE Auteur_Externe (
|
CREATE Auteur_Externe (
|
||||||
idAuteur INT NOT NULL,
|
idAuteur INT NOT NULL,
|
||||||
|
|
Loading…
Reference in a new issue