Fix: taille du champs

This commit is contained in:
Regis Houssin 2007-07-26 17:24:06 +00:00
parent 75b5b3c4c7
commit 8c92f0a450
2 changed files with 2 additions and 2 deletions

View File

@ -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,

View File

@ -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;