Helpdesk da PluGzOne, baseado no osTicket
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
499 B

/**
* Support canned response definition for email filters
*
* @version 1.7-rc1 canned-response-in-filter
*/
ALTER TABLE `%TABLE_PREFIX%email_filter`
ADD `canned_response_id` int(11) unsigned NOT NULL default '0'
AFTER `disable_autoresponder`;
-- Add index for linking responses to messages quickly
ALTER TABLE `%TABLE_PREFIX%ticket_thread` ADD KEY `pid` (`pid`);
-- Finished with patch
UPDATE `%TABLE_PREFIX%config`
SET `schema_signature`='435c62c3b23795529bcfae7e7371d82e';