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