You can now set the number of hours before a ticket is automatically closed if autoclose is set

This commit is contained in:
johnnyq
2023-05-07 21:09:18 -04:00
parent 37b375c1d9
commit 93d4f3ebce
7 changed files with 28 additions and 6 deletions

3
db.sql
View File

@@ -1099,6 +1099,7 @@ CREATE TABLE `settings` (
`config_ticket_email_parse` tinyint(1) NOT NULL DEFAULT 0,
`config_ticket_client_general_notifications` tinyint(1) NOT NULL DEFAULT 1,
`config_ticket_autoclose` tinyint(1) NOT NULL DEFAULT 0,
`config_ticket_autoclose_hours` int(5) NOT NULL DEFAULT 72,
`config_enable_cron` tinyint(1) NOT NULL DEFAULT 0,
`config_cron_key` varchar(255) DEFAULT NULL,
`config_recurring_auto_send_invoice` tinyint(1) NOT NULL DEFAULT 1,
@@ -1540,4 +1541,4 @@ CREATE TABLE `vendors` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2023-05-07 20:45:03
-- Dump completed on 2023-05-07 21:08:34