create table partenaire before
This commit is contained in:
parent
a11587f7a5
commit
f450ab1f7d
1 changed files with 8 additions and 8 deletions
|
@ -176,6 +176,14 @@ CREATE TABLE Publie_Externe(
|
||||||
PRIMARY KEY (idPublication, idAuteurExterne)
|
PRIMARY KEY (idPublication, idAuteurExterne)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
--Yasmine
|
||||||
|
CREATE TABLE Partenaire(
|
||||||
|
idPartenaire INT NOT NULL,
|
||||||
|
nom VARCHAR,
|
||||||
|
pays VARCHAR,
|
||||||
|
PRIMARY KEY(idPartenaire)
|
||||||
|
);
|
||||||
|
|
||||||
-- Ronan
|
-- Ronan
|
||||||
CREATE TABLE Participe_Externe(
|
CREATE TABLE Participe_Externe(
|
||||||
idProjet INT NOT NULL,
|
idProjet INT NOT NULL,
|
||||||
|
@ -203,11 +211,3 @@ CREATE TABLE Encadrement (
|
||||||
PRIMARY KEY(idScientifique,idDoctorant)
|
PRIMARY KEY(idScientifique,idDoctorant)
|
||||||
);
|
);
|
||||||
|
|
||||||
--Yasmine
|
|
||||||
|
|
||||||
CREATE TABLE Partenaire(
|
|
||||||
idPartenaire INT NOT NULL,
|
|
||||||
nom VARCHAR,
|
|
||||||
pays VARCHAR,
|
|
||||||
PRIMARY KEY(idPartenaire)
|
|
||||||
);
|
|
||||||
|
|
Loading…
Reference in a new issue