nouvelle version
This commit is contained in:
parent
a8a2be8f62
commit
21071c4db0
@ -5,3 +5,19 @@
|
|||||||
|
|
||||||
alter table llx_product add fk_product_type integer default 0 ;
|
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
|
||||||
|
);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user