Fix: le champ type était à 12 au lieu de 20 caractères

This commit is contained in:
Regis Houssin 2006-10-04 13:18:51 +00:00
parent d1024c9c36
commit e4b14d086c

View File

@ -27,7 +27,7 @@ create table llx_document_model
( (
rowid integer AUTO_INCREMENT PRIMARY KEY, rowid integer AUTO_INCREMENT PRIMARY KEY,
nom varchar(50), nom varchar(50),
type varchar(12) NOT NULL, type varchar(20) NOT NULL,
libelle varchar(255), libelle varchar(255),
description text description text
)type=innodb; )type=innodb;