From ef0910700e22f8524806c3e1f15694a96f1708d9 Mon Sep 17 00:00:00 2001
From: Regis Houssin <regis@dolibarr.fr>
Date: Thu, 26 Jul 2007 17:26:10 +0000
Subject: [PATCH] Fix: taille du champs

---
 mysql/migration/2.1.0-2.2.0.sql | 2 +-
 mysql/tables/llx_c_ecotaxe.sql  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/mysql/migration/2.1.0-2.2.0.sql b/mysql/migration/2.1.0-2.2.0.sql
index 1a54c11e39d..33ed660b978 100644
--- a/mysql/migration/2.1.0-2.2.0.sql
+++ b/mysql/migration/2.1.0-2.2.0.sql
@@ -761,7 +761,7 @@ create table llx_c_ecotaxe
   code         varchar(64)  UNIQUE NOT NULL,
   libelle      varchar(255),
   price        double(16,8),
-  organization varchar(256),
+  organization varchar(255),
   fk_pays      integer NOT NULL,
   active       tinyint DEFAULT 1  NOT NULL
 )type=innodb;
diff --git a/mysql/tables/llx_c_ecotaxe.sql b/mysql/tables/llx_c_ecotaxe.sql
index 446d5b7e269..c2f456b9b51 100644
--- a/mysql/tables/llx_c_ecotaxe.sql
+++ b/mysql/tables/llx_c_ecotaxe.sql
@@ -24,7 +24,7 @@ create table llx_c_ecotaxe
 (
   rowid        integer      AUTO_INCREMENT PRIMARY KEY,
   code         varchar(64)  UNIQUE NOT NULL,  -- Code servant � la traduction et � la r�f�rence interne
-  libelle      varchar(256),                  -- Description
+  libelle      varchar(255),                  -- Description
   price        double(16,8),                  -- Montant HT
   organization varchar(255),                  -- Organisme g�rant le bar�me tarifaire
   fk_pays      integer NOT NULL,              -- Pays correspondant
-- 
GitLab