[+] BO : now you can sync imap mailbox with the Customer Service (SAV)

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@8562 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
vAugagneur
2011-09-14 09:42:53 +00:00
parent b7cc6cb72d
commit 453edf991d
7 changed files with 207 additions and 15 deletions

View File

@@ -468,6 +468,14 @@ CREATE TABLE `PREFIX_customer_message` (
KEY `id_employee` (`id_employee`)
) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8;
CREATE TABLE `PREFIX_customer_message_sync_imap` (
`md5_header` varbinary(32) NOT NULL,
KEY `md5_header_index` (`md5_header`(4))
) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8;
CREATE INDEX `md5_header_index` ON `PREFIX_customer_message_sync_imap` (md5_header(4));
CREATE TABLE `PREFIX_customer_thread` (
`id_customer_thread` int(11) unsigned NOT NULL auto_increment,
`id_shop` INT(11) UNSIGNED NOT NULL DEFAULT '1',