Go to Categories to add support ticket categories.
You cannot delete the default category, but you can rename it.
Go to Team to create new support staff accounts.
You can use two user types in Hesk:
You can do a lot in the Tools section, for example:
A Knowledgebase is a collection of articles, guides, and answers to frequently asked questions, usually organized in multiple categories.
A clear and comprehensive knowledgebase can drastically reduce the number of support tickets you receive, thereby saving you significant time and effort in the long run.
Go to Knowledgebase to create categories and write articles for your knowledgebase.
Sometimes several support tickets address the same issues - allowing you to use pre-written ("canned") responses.
To compose canned responses, go to the Templates > Responses page.
Similarly, you can create Templates > Tickets if your staff will be submitting support tickets on the client''s behalf, for example, from telephone conversations.
Make sure your help desk is as secure as possible by going through the Hesk security checklist.
Hesk regularly receives improvements and bug fixes; make sure you know about them!
Remove "Powered by" links to support Hesk development and make it look more professional.
Experience the best of Hesk by moving your help desk into the Hesk Cloud:
Click here to learn more about Hesk Cloud
Again, welcome to Hesk, and enjoy using it!
Klemen Stirn\r\nFounder\r\nhttps://www.hesk.com
', '[[regtime]]', '0', 9999); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]mfa_backup_codes` -- CREATE TABLE `[[dbprefix]]mfa_backup_codes` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `dt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `user_id` smallint(5) unsigned NOT NULL, `user_type` varchar(8) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'STAFF', `code` varchar(255) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]mfa_verification_tokens` -- CREATE TABLE `[[dbprefix]]mfa_verification_tokens` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` smallint(5) unsigned NOT NULL, `user_type` varchar(8) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'STAFF', `verification_token` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `expires_at` timestamp NOT NULL DEFAULT '2000-01-01 05:00:00', PRIMARY KEY (`id`), KEY `user_id` (`user_id`), KEY `verification_token` (`verification_token`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]muted_emails` -- CREATE TABLE `[[dbprefix]]muted_emails` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `email` varchar(255) NOT NULL, `type` tinyint(3) unsigned NOT NULL DEFAULT '1', `muted_by` smallint(5) unsigned NOT NULL, `dt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `email` (`email`), KEY `type` (`type`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]notes` -- CREATE TABLE `[[dbprefix]]notes` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `ticket` mediumint(8) unsigned NOT NULL, `who` smallint(5) unsigned NOT NULL, `dt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `message` mediumtext COLLATE utf8_unicode_ci NOT NULL, `attachments` mediumtext COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `ticketid` (`ticket`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]oauth_providers` -- CREATE TABLE `[[dbprefix]]oauth_providers` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `authorization_url` text NOT NULL, `token_url` text NOT NULL, `client_id` text NOT NULL, `client_secret` text NOT NULL, `scope` text NOT NULL, `no_val_ssl` tinyint(4) NOT NULL DEFAULT '0', `verified` smallint(6) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]oauth_tokens` -- CREATE TABLE `[[dbprefix]]oauth_tokens` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `provider_id` int(11) NOT NULL, `token_value` text, `token_type` varchar(32) NOT NULL, `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `expires` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]online` -- CREATE TABLE `[[dbprefix]]online` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` smallint(5) unsigned NOT NULL, `dt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `tmp` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `user_id` (`user_id`), KEY `dt` (`dt`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]pending_customer_email_changes` -- CREATE TABLE `[[dbprefix]]pending_customer_email_changes` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `customer_id` mediumint(8) unsigned NOT NULL, `new_email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `verification_token` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `expires_at` timestamp NOT NULL DEFAULT '2000-01-01 05:00:00', PRIMARY KEY (`id`), KEY `email` (`new_email`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]permission_groups` -- CREATE TABLE `[[dbprefix]]permission_groups` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]permission_group_categories` -- CREATE TABLE `[[dbprefix]]permission_group_categories` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `group_id` mediumint(8) unsigned NOT NULL, `category_id` smallint(5) unsigned NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `group_id_category_id` (`group_id`,`category_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]permission_group_features` -- CREATE TABLE `[[dbprefix]]permission_group_features` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `group_id` mediumint(8) unsigned NOT NULL, `feature` varchar(255) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `group_id_feature` (`group_id`,`feature`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]permission_group_members` -- CREATE TABLE `[[dbprefix]]permission_group_members` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `group_id` mediumint(8) unsigned NOT NULL, `user_id` smallint(5) unsigned NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `group_id_user_id` (`group_id`,`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]pipe_loops` -- CREATE TABLE `[[dbprefix]]pipe_loops` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `hits` smallint(1) unsigned NOT NULL DEFAULT '0', `message_hash` char(32) COLLATE utf8_unicode_ci NOT NULL, `dt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `email` (`email`,`hits`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]pipe_rejections` -- CREATE TABLE `[[dbprefix]]pipe_rejections` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `email` (`email`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]replies` -- CREATE TABLE `[[dbprefix]]replies` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `replyto` mediumint(8) unsigned NOT NULL DEFAULT '0', `message` mediumtext COLLATE utf8_unicode_ci NOT NULL, `message_html` mediumtext COLLATE utf8_unicode_ci, `dt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `attachments` mediumtext COLLATE utf8_unicode_ci, `staffid` smallint(5) unsigned NOT NULL DEFAULT '0', `customer_id` mediumint(5) unsigned DEFAULT NULL, `rating` enum('1','5') COLLATE utf8_unicode_ci DEFAULT NULL, `read` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `replyto` (`replyto`), KEY `dt` (`dt`), KEY `staffid` (`staffid`), KEY `customer_id` (`customer_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]reply_drafts` -- CREATE TABLE `[[dbprefix]]reply_drafts` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `owner` smallint(5) unsigned NOT NULL, `ticket` mediumint(8) unsigned NOT NULL, `message` mediumtext CHARACTER SET utf8 NOT NULL, `message_html` mediumtext CHARACTER SET utf8, `dt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `owner` (`owner`), KEY `ticket` (`ticket`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]reset_password` -- CREATE TABLE `[[dbprefix]]reset_password` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `user` smallint(5) unsigned NOT NULL, `hash` char(40) NOT NULL, `ip` varchar(45) NOT NULL, `dt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `user_type` varchar(8) NOT NULL DEFAULT 'STAFF', PRIMARY KEY (`id`), KEY `user` (`user`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]service_messages` -- CREATE TABLE `[[dbprefix]]service_messages` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `dt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `author` smallint(5) unsigned NOT NULL, `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `message` mediumtext COLLATE utf8_unicode_ci NOT NULL, `language` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `style` enum('0','1','2','3','4') COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `type` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `order` smallint(5) unsigned NOT NULL DEFAULT '0', `location` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `type` (`type`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]std_replies` -- CREATE TABLE `[[dbprefix]]std_replies` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `message` mediumtext COLLATE utf8_unicode_ci NOT NULL, `message_html` mediumtext COLLATE utf8_unicode_ci, `reply_order` smallint(5) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]temp_attachments` -- CREATE TABLE `[[dbprefix]]temp_attachments` ( `att_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `unique_id` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `saved_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `real_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `size` int(10) unsigned NOT NULL DEFAULT '0', `expires_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`att_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]temp_attachments_limits` -- CREATE TABLE `[[dbprefix]]temp_attachments_limits` ( `ip` varchar(45) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `upload_count` int(10) unsigned NOT NULL DEFAULT '1', `last_upload_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`ip`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]tickets` -- CREATE TABLE `[[dbprefix]]tickets` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `trackid` varchar(13) COLLATE utf8_unicode_ci NOT NULL, `u_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `u_email` varchar(1000) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `category` smallint(5) unsigned NOT NULL DEFAULT '1', `priority` tinyint(3) unsigned NOT NULL DEFAULT '3', `subject` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `message` mediumtext COLLATE utf8_unicode_ci NOT NULL, `message_html` mediumtext COLLATE utf8_unicode_ci, `dt` timestamp NOT NULL DEFAULT '2000-01-01 05:00:00', `lastchange` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `firstreply` timestamp NULL DEFAULT NULL, `closedat` timestamp NULL DEFAULT NULL, `articles` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `ip` varchar(45) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `language` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `status` tinyint(3) unsigned NOT NULL DEFAULT '0', `openedby` mediumint(8) DEFAULT '0', `firstreplyby` smallint(5) unsigned DEFAULT NULL, `closedby` mediumint(8) DEFAULT NULL, `replies` smallint(5) unsigned NOT NULL DEFAULT '0', `staffreplies` smallint(5) unsigned NOT NULL DEFAULT '0', `owner` smallint(5) unsigned NOT NULL DEFAULT '0', `assignedby` mediumint(8) DEFAULT NULL, `time_worked` time NOT NULL DEFAULT '00:00:00', `lastreplier` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `replierid` smallint(5) unsigned DEFAULT NULL, `archive` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `locked` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `attachments` mediumtext COLLATE utf8_unicode_ci NOT NULL, `merged` mediumtext COLLATE utf8_unicode_ci NOT NULL, `history` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom1` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom2` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom3` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom4` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom5` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom6` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom7` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom8` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom9` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom10` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom11` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom12` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom13` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom14` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom15` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom16` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom17` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom18` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom19` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom20` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom21` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom22` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom23` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom24` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom25` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom26` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom27` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom28` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom29` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom30` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom31` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom32` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom33` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom34` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom35` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom36` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom37` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom38` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom39` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom40` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom41` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom42` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom43` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom44` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom45` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom46` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom47` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom48` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom49` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom50` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom51` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom52` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom53` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom54` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom55` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom56` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom57` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom58` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom59` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom60` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom61` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom62` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom63` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom64` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom65` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom66` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom67` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom68` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom69` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom70` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom71` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom72` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom73` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom74` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom75` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom76` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom77` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom78` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom79` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom80` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom81` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom82` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom83` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom84` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom85` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom86` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom87` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom88` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom89` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom90` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom91` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom92` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom93` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom94` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom95` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom96` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom97` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom98` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom99` mediumtext COLLATE utf8_unicode_ci NOT NULL, `custom100` mediumtext COLLATE utf8_unicode_ci NOT NULL, `due_date` timestamp NULL DEFAULT NULL, `overdue_email_sent` tinyint(1) DEFAULT '0', `satisfaction_email_sent` tinyint(1) DEFAULT '0', `satisfaction_email_dt` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `trackid` (`trackid`), KEY `archive` (`archive`), KEY `categories` (`category`), KEY `statuses` (`status`), KEY `owner` (`owner`), KEY `openedby` (`openedby`,`firstreplyby`,`closedby`), KEY `dt` (`dt`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]ticket_templates` -- CREATE TABLE `[[dbprefix]]ticket_templates` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `message` mediumtext COLLATE utf8_unicode_ci NOT NULL, `message_html` mediumtext COLLATE utf8_unicode_ci, `tpl_order` smallint(5) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]ticket_to_collaborator` -- CREATE TABLE `[[dbprefix]]ticket_to_collaborator` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `ticket_id` mediumint(8) unsigned NOT NULL, `user_id` smallint(5) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `ticket_id` (`ticket_id`), KEY `user_id` (`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]ticket_to_customer` -- CREATE TABLE `[[dbprefix]]ticket_to_customer` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `ticket_id` mediumint(8) unsigned NOT NULL, `customer_id` mediumint(8) unsigned NOT NULL, `customer_type` varchar(9) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'REQUESTER', PRIMARY KEY (`id`), KEY `ticket_id` (`ticket_id`), KEY `customer_id` (`customer_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]users` -- CREATE TABLE `[[dbprefix]]users` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `user` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `pass` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `isadmin` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `active` smallint(6) NOT NULL DEFAULT '1', `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `nickname` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `signature` varchar(1000) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `language` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `categories` varchar(500) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `afterreply` enum('0','1','2') COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `autostart` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1', `autoreload` smallint(5) unsigned NOT NULL DEFAULT '0', `notify_customer_new` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1', `notify_customer_reply` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1', `show_suggested` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1', `notify_new_unassigned` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1', `notify_new_my` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1', `notify_reply_unassigned` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1', `notify_reply_my` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1', `notify_assigned` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1', `notify_pm` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1', `notify_note` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1', `notify_overdue_unassigned` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1', `notify_overdue_my` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1', `notify_customer_approval` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `notify_collaborator_added` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1', `notify_collaborator_customer_reply` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1', `notify_collaborator_staff_reply` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `notify_collaborator_note` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1', `notify_collaborator_resolved` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `notify_collaborator_overdue` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1', `default_list` varchar(1000) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `autoassign` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1', `heskprivileges` varchar(1000) COLLATE utf8_unicode_ci DEFAULT NULL, `ratingneg` mediumint(8) unsigned NOT NULL DEFAULT '0', `ratingpos` mediumint(8) unsigned NOT NULL DEFAULT '0', `rating` float NOT NULL DEFAULT '0', `replies` mediumint(8) unsigned NOT NULL DEFAULT '0', `mfa_enrollment` smallint(5) unsigned NOT NULL DEFAULT '0', `mfa_secret` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `autoassign` (`autoassign`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]users` -- INSERT INTO `[[dbprefix]]users` VALUES (1, '[[admin_username]]', '[[admin_pass]]', '1', 1, '[[admin_realname]]', '[[admin_email]]', '', '', NULL, '', '0', '1', 0, '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '0', '1', '1', '0', '1', '0', '1', '', '1', '', 0, 0, 0, 0, 0, NULL); /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;