end of file errors
This commit is contained in:
parent
ee0cee9b83
commit
13c8ebbe94
1 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
);
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue