FIX : increase size of llx_c_actioncomm type column

This commit is contained in:
florian HENRY 2016-11-14 12:21:08 +01:00
parent 52080fb917
commit 37a9f15fb4
2 changed files with 2 additions and 2 deletions

View File

@ -201,4 +201,4 @@ create table llx_user_employment
dateemploymentend date -- last and current value stored into llx_user dateemploymentend date -- last and current value stored into llx_user
)ENGINE=innodb; )ENGINE=innodb;
ALTER TABLE llx_c_actioncomm MODIFY COLUMN type varchar(50) DEFAULT 'system' NOT NULL;

View File

@ -22,7 +22,7 @@ create table llx_c_actioncomm
( (
id integer PRIMARY KEY, id integer PRIMARY KEY,
code varchar(12) NOT NULL, code varchar(12) NOT NULL,
type varchar(10) DEFAULT 'system' NOT NULL, type varchar(50) DEFAULT 'system' NOT NULL,
libelle varchar(48) NOT NULL, libelle varchar(48) NOT NULL,
module varchar(16) DEFAULT NULL, module varchar(16) DEFAULT NULL,
active tinyint DEFAULT 1 NOT NULL, active tinyint DEFAULT 1 NOT NULL,