From fe0eb11d166ae0ac49af41bd453494beedc4b7f6 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 6 Nov 2023 00:52:21 +0100 Subject: [PATCH] Fix missing migration --- htdocs/install/mysql/migration/18.0.0-19.0.0.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/htdocs/install/mysql/migration/18.0.0-19.0.0.sql b/htdocs/install/mysql/migration/18.0.0-19.0.0.sql index 92eff01cf9b..4c14ecf5be7 100644 --- a/htdocs/install/mysql/migration/18.0.0-19.0.0.sql +++ b/htdocs/install/mysql/migration/18.0.0-19.0.0.sql @@ -170,3 +170,6 @@ ALTER TABLE llx_facture_rec ADD INDEX idx_facture_rec_datec(datec); ALTER TABLE llx_facturedet ADD COLUMN batch varchar(128) NULL; -- To store the batch to consume in stock when using a POS module ALTER TABLE llx_facturedet ADD COLUMN fk_warehouse integer NULL; -- To store the warehouse where to consume stock when using a POS module + +ALTER TABLE llx_multicurrency_rate ADD COLUMN rate_indirect double DEFAULT 0; +