From 7252022afedab42ce4bedfd1722f257381546119 Mon Sep 17 00:00:00 2001 From: chkernit <46865400+99Deon@users.noreply.github.com> Date: Sat, 12 Sep 2020 16:33:07 +0100 Subject: [PATCH] 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 . --- htdocs/install/mysql/tables/llx_c_ticket_category.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/install/mysql/tables/llx_c_ticket_category.sql b/htdocs/install/mysql/tables/llx_c_ticket_category.sql index 1e98de92d3b..58126633ce1 100644 --- a/htdocs/install/mysql/tables/llx_c_ticket_category.sql +++ b/htdocs/install/mysql/tables/llx_c_ticket_category.sql @@ -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;