alter table llx_product add weight float DEFAULT '0';
alter table llx_product add units char(2) DEFAULT 'kg';
This commit is contained in:
Rodolphe Quiedeville 2006-12-07 12:53:46 +00:00
parent 199b01afef
commit e8c0b69e85

View File

@ -60,6 +60,8 @@ ALTER TABLE llx_societe modify parent integer;
UPDATE llx_societe set parent = null where parent = 0;
alter table llx_product add gencode varchar(255) DEFAULT NULL;
alter table llx_product add weight float DEFAULT '0';
alter table llx_product add units char(2) DEFAULT 'kg';
alter table llx_product add canvas varchar(15) DEFAULT '';
insert into llx_cond_reglement(rowid, code, sortorder, active, libelle, libelle_facture, fdm, nbjour) values (6,'PROFORMA', 6,1, 'Proforma','Réglement avant livraison',0,0);