From ad58f68b5b5b114da2734b7944e4faff57e62854 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Tue, 9 Sep 2003 17:17:24 +0000 Subject: [PATCH] Ajout table llx_product_price --- mysql/migration/0.6.0-0.7.0.sql | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/mysql/migration/0.6.0-0.7.0.sql b/mysql/migration/0.6.0-0.7.0.sql index 637762a4eb4..4c0d8665e77 100644 --- a/mysql/migration/0.6.0-0.7.0.sql +++ b/mysql/migration/0.6.0-0.7.0.sql @@ -4,4 +4,17 @@ -- alter table llx_propal add remise_percent real default 0; -alter table llx_facture add remise_percent real default 0; \ No newline at end of file +alter table llx_facture add remise_percent real default 0; + +create table llx_product_price +( + rowid integer AUTO_INCREMENT PRIMARY KEY, + tms timestamp, + fk_product integer NOT NULL, + date_price datetime NOT NULL, + price double, + tva_tx double default 19.6, + fk_user_author integer, + envente tinyint default 1 +); +