From 13c8ebbe9406451f908f142bae5efaa4ccf160d2 Mon Sep 17 00:00:00 2001 From: nbillard Date: Wed, 7 Dec 2022 09:48:37 +0100 Subject: [PATCH] end of file errors --- personnel.sql | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/personnel.sql b/personnel.sql index 837ae35..a1fa1f4 100644 --- a/personnel.sql +++ b/personnel.sql @@ -192,13 +192,15 @@ CREATE TABLE Projet ( budget_Laas INT NOT NULL, cout INT NOT NULL, FOREIGN KEY (idScientifique) REFERENCES Scientifique(idScientifique), - PRIMARY KEY(idProjet), + PRIMARY KEY(idProjet) ); --Yasmine CREATE TABLE Encadrement ( + idDoctorant INT NOT NULL, + idScientifique INT NOT NULL, FOREIGN KEY (idDoctorant) REFERENCES Doctorant(idDoctorant), FOREIGN KEY (idScientifique) REFERENCES Scientifique(idScientifique), - PRIMARY KEY(idScientifique,idDoctorant), + PRIMARY KEY(idScientifique,idDoctorant) ); --Yasmine @@ -206,7 +208,7 @@ CREATE TABLE Encadrement ( CREATE TABLE Partenaire( PRIMARY KEY(idPartenaire), nom char, - pays char, + pays char );