Fix bad name of field

This commit is contained in:
Laurent Destailleur 2018-07-02 17:57:32 +02:00
parent 3c176adb38
commit 0f77e3c05c

View File

@ -51,6 +51,6 @@ create table llx_product_fournisseur_price
fk_multicurrency integer,
multicurrency_code varchar(255),
multicurrency_tx double(24,8) DEFAULT 1,
multicurrency_price double(24,8) DEFAULT NULL,
multicurrency_price_ttc double(24,8) DEFAULT NULL
multicurrency_unitprice double(24,8) DEFAULT NULL, -- unit price without tax
multicurrency_price double(24,8) DEFAULT NULL
)ENGINE=innodb;