Ajout create table llx_entrepot_valorisation

This commit is contained in:
Rodolphe Quiedeville 2006-12-13 14:19:11 +00:00
parent 7f9f649025
commit 93741bb995

View File

@ -573,3 +573,14 @@ create table llx_stock_valorisation
key(fk_product)
)type=innodb;
create table llx_entrepot_valorisation
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
tms timestamp, -- date technique mise à jour automatiquement
date_calcul date, -- date auquel a ete calcule la valeur
fk_entrepot integer UNSIGNED NOT NULL ,
valo_pmp float(12,4), -- valoristaion du stock en PMP
key(fk_entrepot)
)type=innodb;