From 93741bb9951079ce21974ebc0c97f5a9d72a5f55 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Wed, 13 Dec 2006 14:19:11 +0000 Subject: [PATCH] Ajout create table llx_entrepot_valorisation --- mysql/migration/2.0.0-2.1.0.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) 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; +