Fix position of line for ticket group
This commit is contained in:
parent
9ad3ba1572
commit
c80a8517d4
@ -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;
|
||||||
|
|
||||||
|
|||||||
@ -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,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user