Task # 559 : forgot to update product_price table to add column

This commit is contained in:
Maxime Kohlhaas 2012-10-24 17:22:45 +02:00
parent 21875a5e4a
commit fdc6ed90a4

View File

@ -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;