From fc8daef78db6455f8318a308f2abcf2e533db9ca Mon Sep 17 00:00:00 2001 From: BENKE Charlie Date: Mon, 6 Jul 2015 17:46:36 +0200 Subject: [PATCH 1/2] =?UTF-8?q?increase=20size=20of=20libell=C3=A9=20if=20?= =?UTF-8?q?we=20use=20paypal=20and=20email?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit in case of long email the field is to small --- htdocs/install/mysql/tables/llx_c_paiement.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/install/mysql/tables/llx_c_paiement.sql b/htdocs/install/mysql/tables/llx_c_paiement.sql index 090dc2c47be..fd9d301921d 100644 --- a/htdocs/install/mysql/tables/llx_c_paiement.sql +++ b/htdocs/install/mysql/tables/llx_c_paiement.sql @@ -22,7 +22,7 @@ create table llx_c_paiement ( id integer PRIMARY KEY, code varchar(6) NOT NULL, - libelle varchar(30), + libelle varchar(62), type smallint, -- 0: input money, 1: output money, 2: input and output, 3: other active tinyint DEFAULT 1 NOT NULL, accountancy_code varchar(32) NULL, From b7e148d183791b804dcfe24fd624b90d092fc20c Mon Sep 17 00:00:00 2001 From: BENKE Charlie Date: Tue, 14 Jul 2015 02:49:58 +0200 Subject: [PATCH 2/2] Update 3.7.0-3.8.0.sql --- htdocs/install/mysql/migration/3.7.0-3.8.0.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/htdocs/install/mysql/migration/3.7.0-3.8.0.sql b/htdocs/install/mysql/migration/3.7.0-3.8.0.sql index 3bd8c282c38..c1c436e7eaf 100755 --- a/htdocs/install/mysql/migration/3.7.0-3.8.0.sql +++ b/htdocs/install/mysql/migration/3.7.0-3.8.0.sql @@ -729,3 +729,4 @@ INSERT INTO llx_c_lead_status(rowid,code,label,position,percent,active) VALUES ( DELETE FROM llx_c_action_trigger where code = 'PROPAL_CLASSIFYBILLED'; DELETE FROM llx_c_action_trigger where code = 'FICHINTER_CLASSIFYBILLED'; +ALTER TABLE llx_c_paiement MODIFY COLUMN libelle varchar(62);