This commit is contained in:
sidya82
2015-02-07 23:59:01 +01:00
parent b7b6a84643
commit e92819cbb7
25 changed files with 879 additions and 597 deletions

View File

@@ -50,7 +50,7 @@ CREATE TABLE client (
idClient VARCHAR(10) PRIMARY KEY,
nom VARCHAR(20),
prenom VARCHAR(20),
adresse VARCHAR(50),
cb VARCHAR(50),
typeAbonnement INTEGER
);
@@ -71,6 +71,7 @@ CREATE TABLE service (
dateDemande TIMESTAMP,
dateService TIMESTAMP DEFAULT NULL,
dateRealisation TIMESTAMP DEFAULT NULL,
lieu VARCHAR(255),
FOREIGN KEY (idClient) REFERENCES client(idClient),
FOREIGN KEY (idPlacement) REFERENCES placement(idPlacement)
);