fix problem in table "llx_c_ticket_category.sql"

when install dolibarr project  the step of creation tables does not completed because there are a bug in create llx_c_ticket_category.sql table .
This commit is contained in:
chkernit 2020-09-12 16:33:07 +01:00 committed by GitHub
parent 48e34c2069
commit 7252022afe
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;