Add import_key into llx_product_price

This commit is contained in:
fhenry 2013-04-02 15:03:01 +02:00
parent 735e107a51
commit ae00d8b214
2 changed files with 3 additions and 1 deletions

View File

@ -208,4 +208,5 @@ ALTER TABLE llx_user ADD COLUMN zip varchar(25);
ALTER TABLE llx_user ADD COLUMN town varchar(50);
ALTER TABLE llx_user ADD COLUMN fk_state integer DEFAULT 0;
ALTER TABLE llx_user ADD COLUMN fk_country integer DEFAULT 0;
ALTER TABLE llx_product_price ADD COLUMN import_key varchar(14) AFTER price_by_qty;

View File

@ -37,6 +37,7 @@ create table llx_product_price
localtax2_tx double(6,3) DEFAULT 0,
fk_user_author integer,
tosell tinyint DEFAULT 1,
price_by_qty integer NOT NULL DEFAULT 0
price_by_qty integer NOT NULL DEFAULT 0,
import_key varchar(14)
)ENGINE=innodb;