folder_email fix

Change-Id: I1c2e7aa68d06b6873e38ae13fef868aa7eb80413
Signed-off-by: SJ <sj@acts.hu>
This commit is contained in:
SJ
2016-08-11 07:22:52 +02:00
parent 8b0995a556
commit f4c656b0ae
3 changed files with 19 additions and 4 deletions

View File

@ -282,7 +282,7 @@ create table if not exists `folder` (
create table if not exists `folder_email` (
`uid` int unsigned not null auto_increment,
`email` char(128) not null unique,
key `folder_user_idx` (`uid`)
key `folder_user_idx` (`uid`),
key `folder_user_idx2` (`email`)
) ENGINE=InnoDB;