The sequential IDs are driven by the database itself (HESK does not tell the database what the next sequential ID should be). You can alter the AUTO_INCREMENT value on the tickets table to tell the database what the next ID should be:
Code: Select all
ALTER TABLE hesk_tickets AUTO_INCREMENT = 53
I'm not sure if HESK will do anything weird if the auto increment number is changed; however I don't think it will since tickets can be deleted which breaks the flow of IDs anyways.
If you want to add padding to the ID (i.e. 00053 instead of 53), you will have to do some sort of logic in the PHP pages to properly pad it, or modify the SQL queries to pad some 0s when selecting the data.