Create Publie_Externe table
This commit is contained in:
parent
7858efcb7e
commit
29187f4fcc
1 changed files with 7 additions and 0 deletions
|
@ -1,6 +1,13 @@
|
|||
CREATE TABLE Personnel
|
||||
();
|
||||
|
||||
CREATE TABLE Publie_Externe(
|
||||
idPublication INT NOT NULL,
|
||||
idAuteurExterne INT NOT NULL,
|
||||
FOREIGN KEY (idPublication) REFERENCES Publication(idPublication),
|
||||
FOREIGN KEY (idAuteurExterne) REFERENCES Auteur_Externe(idAuteur)
|
||||
|
||||
);
|
||||
|
||||
CREATE TABLE Participe_Externe(
|
||||
idProjet INT NOT NULL,
|
||||
|
|
Loading…
Reference in a new issue