From fdc6ed90a42bb410b8f6b22183795caef1fbf686 Mon Sep 17 00:00:00 2001 From: Maxime Kohlhaas Date: Wed, 24 Oct 2012 17:22:45 +0200 Subject: [PATCH] Task # 559 : forgot to update product_price table to add column --- htdocs/install/mysql/tables/llx_product_price.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/htdocs/install/mysql/tables/llx_product_price.sql b/htdocs/install/mysql/tables/llx_product_price.sql index 12f1257f156..b2de59ff62c 100644 --- a/htdocs/install/mysql/tables/llx_product_price.sql +++ b/htdocs/install/mysql/tables/llx_product_price.sql @@ -36,6 +36,7 @@ create table llx_product_price localtax1_tx double(6,3) DEFAULT 0, localtax2_tx double(6,3) DEFAULT 0, fk_user_author integer, - tosell tinyint DEFAULT 1 + tosell tinyint DEFAULT 1, + price_by_qty integer NOT NULL DEFAULT 0 )ENGINE=innodb;