From 8c92f0a450122620caee869ce5eabf5f8c35c975 Mon Sep 17 00:00:00 2001 From: Regis Houssin <regis@dolibarr.fr> Date: Thu, 26 Jul 2007 17:24:06 +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 cd2effb2b87..1a54c11e39d 100644 --- a/mysql/migration/2.1.0-2.2.0.sql +++ b/mysql/migration/2.1.0-2.2.0.sql @@ -759,7 +759,7 @@ create table llx_c_ecotaxe ( rowid integer AUTO_INCREMENT PRIMARY KEY, code varchar(64) UNIQUE NOT NULL, - libelle varchar(256), + libelle varchar(255), price double(16,8), organization varchar(256), fk_pays integer NOT NULL, diff --git a/mysql/tables/llx_c_ecotaxe.sql b/mysql/tables/llx_c_ecotaxe.sql index 59f64ef8e38..446d5b7e269 100644 --- a/mysql/tables/llx_c_ecotaxe.sql +++ b/mysql/tables/llx_c_ecotaxe.sql @@ -26,7 +26,7 @@ create table llx_c_ecotaxe code varchar(64) UNIQUE NOT NULL, -- Code servant � la traduction et � la r�f�rence interne libelle varchar(256), -- Description price double(16,8), -- Montant HT - organization varchar(256), -- Organisme g�rant le bar�me tarifaire + organization varchar(255), -- Organisme g�rant le bar�me tarifaire fk_pays integer NOT NULL, -- Pays correspondant active tinyint DEFAULT 1 NOT NULL )type=innodb; \ No newline at end of file -- GitLab