diff --git a/mysql/migration/2.0.0-2.1.0.sql b/mysql/migration/2.0.0-2.1.0.sql index 54a783743e2..8e9ce1439ff 100644 --- a/mysql/migration/2.0.0-2.1.0.sql +++ b/mysql/migration/2.0.0-2.1.0.sql @@ -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; +