nouvelle version

This commit is contained in:
Rodolphe Quiedeville 2003-08-03 17:36:25 +00:00
parent a8a2be8f62
commit 21071c4db0

View File

@ -4,4 +4,20 @@
--
alter table llx_product add fk_product_type integer default 0 ;
alter table llx_product add duration varchar(6) ;
alter table llx_product add duration varchar(6) ;
create table llx_contrat
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
tms timestamp,
enservice tinyint,
mise_en_service datetime,
fin_validite datetime,
date_cloture datetime,
fk_soc integer NOT NULL,
fk_product integer NOT NULL,
fk_facture integer NOT NULL default 0,
fk_user_author integer NOT NULL,
fk_user_mise_en_service integer NOT NULL,
fk_user_cloture integer NOT NULL
);