Merge pull request #14716 from 99Deon/develop

fix bug  in "llx_c_ticket_category.sql"  table .
This commit is contained in:
Laurent Destailleur 2020-09-14 00:17:16 +02:00 committed by GitHub
commit 1015d3c026
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@ create table llx_c_ticket_category
label varchar(128) NOT NULL,
active integer DEFAULT 1,
use_default integer DEFAULT 1,
fk_parent integer DEFAULT 0 NOT NULL; -- Parent group
fk_parent integer DEFAULT 0 NOT NULL, -- Parent group
force_severity varchar(32) NULL, -- To force the severity if we choosed this category
description varchar(255)
)ENGINE=innodb;