Skip to content
Snippets Groups Projects
Commit 8c92f0a4 authored by Regis Houssin's avatar Regis Houssin
Browse files

Fix: taille du champs

parent 75b5b3c4
Branches
Tags
No related merge requests found
...@@ -759,7 +759,7 @@ create table llx_c_ecotaxe ...@@ -759,7 +759,7 @@ create table llx_c_ecotaxe
( (
rowid integer AUTO_INCREMENT PRIMARY KEY, rowid integer AUTO_INCREMENT PRIMARY KEY,
code varchar(64) UNIQUE NOT NULL, code varchar(64) UNIQUE NOT NULL,
libelle varchar(256), libelle varchar(255),
price double(16,8), price double(16,8),
organization varchar(256), organization varchar(256),
fk_pays integer NOT NULL, fk_pays integer NOT NULL,
......
...@@ -26,7 +26,7 @@ create table llx_c_ecotaxe ...@@ -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 code varchar(64) UNIQUE NOT NULL, -- Code servant à la traduction et à la référence interne
libelle varchar(256), -- Description libelle varchar(256), -- Description
price double(16,8), -- Montant HT 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 fk_pays integer NOT NULL, -- Pays correspondant
active tinyint DEFAULT 1 NOT NULL active tinyint DEFAULT 1 NOT NULL
)type=innodb; )type=innodb;
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment