This commit is contained in:
sidya82
2015-02-04 15:33:15 +01:00
parent 952b215c0c
commit 2a1099c450
9 changed files with 63 additions and 46 deletions

View File

@@ -70,8 +70,8 @@ CREATE TABLE service (
idPlacement VARCHAR(10),
typeService INTEGER,
dateDemande TIMESTAMP,
dateService TIMESTAMP,
dateRealisation TIMESTAMP
dateService TIMESTAMP DEFAULT NULL,
dateRealisation TIMESTAMP DEFAULT NULL,
FOREIGN KEY (idClient) REFERENCES client(idClient),
FOREIGN KEY (idPlacement) REFERENCES placement(idPlacement)
);