From 5ef74af0df17229bc61c2c00787cb0daccd84692 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 7 Oct 2007 18:23:17 +0000 Subject: [PATCH] Fix: Script migratin incomplet --- mysql/migration/2.1.0-2.2.0.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mysql/migration/2.1.0-2.2.0.sql b/mysql/migration/2.1.0-2.2.0.sql index 13bcc8c5979..1066eab3d9b 100644 --- a/mysql/migration/2.1.0-2.2.0.sql +++ b/mysql/migration/2.1.0-2.2.0.sql @@ -826,11 +826,13 @@ INSERT INTO `llx_c_ecotaxe` (`rowid`, `code`, `libelle`, `price`, `organization` INSERT INTO `llx_c_ecotaxe` (`rowid`, `code`, `libelle`, `price`, `organization`, `fk_pays`, `active`) VALUES (38, 'ES-A-H', 'Jouets et équipements de loisirs et de sports > 10 kg', 1.25000000, 'Eco-systèmes', 1, 1); ALTER TABLE llx_commandedet CHANGE coef marge_tx double(6,3) DEFAULT 0; +ALTER TABLE llx_commandedet ADD COLUMN marge_tx double(6,3) DEFAULT 0; ALTER TABLE llx_commandedet ADD COLUMN marque_tx double(6,3) DEFAULT 0 after marge_tx; ALTER TABLE llx_commandedet MODIFY marge_tx double(6,3) DEFAULT 0; ALTER TABLE llx_commandedet MODIFY marque_tx double(6,3) DEFAULT 0; ALTER TABLE llx_propaldet CHANGE coef marge_tx double(6,3) DEFAULT 0; +ALTER TABLE llx_propaldet ADD COLUMN marge_tx double(6,3) DEFAULT 0; ALTER TABLE llx_propaldet ADD COLUMN marque_tx double(6,3) DEFAULT 0 after marge_tx; ALTER TABLE llx_propaldet MODIFY marge_tx double(6,3) DEFAULT 0; ALTER TABLE llx_propaldet MODIFY marque_tx double(6,3) DEFAULT 0;