Fix position of line for ticket group

This commit is contained in:
Laurent Destailleur 2021-03-30 17:39:48 +02:00
parent 9ad3ba1572
commit c80a8517d4
2 changed files with 2 additions and 2 deletions

View File

@ -310,5 +310,5 @@ ALTER TABLE llx_societe_perentity ADD INDEX idx_societe_perentity_fk_soc (fk_soc
ALTER TABLE llx_societe_perentity ADD UNIQUE INDEX uk_societe_perentity (fk_soc, entity); ALTER TABLE llx_societe_perentity ADD UNIQUE INDEX uk_societe_perentity (fk_soc, entity);
ALTER TABLE llx_c_ticket_category ADD COLUMN public integer DEFAULT 0; ALTER TABLE llx_c_ticket_category ADD COLUMN public integer DEFAULT 0;
ALTER TABLE llc_c_ticket_category MODIFY COLUMN pos integer DEFAULT 0 NOT NULL;

View File

@ -21,7 +21,7 @@ create table llx_c_ticket_category
entity integer DEFAULT 1, entity integer DEFAULT 1,
code varchar(32) NOT NULL, code varchar(32) NOT NULL,
label varchar(128) NOT NULL, label varchar(128) NOT NULL,
pos varchar(32) NOT NULL, pos integer DEFAULT 0 NOT NULL,
public integer DEFAULT 0, public integer DEFAULT 0,
use_default integer DEFAULT 1, use_default integer DEFAULT 1,
active integer DEFAULT 1, active integer DEFAULT 1,