Commit 971fb330 authored by tbrehm's avatar tbrehm
Browse files

Added key on type column in mail_forwarding table.

parent fbdcc457
......@@ -398,7 +398,8 @@ CREATE TABLE `mail_forwarding` (
`type` enum('alias','aliasdomain','forward','catchall') NOT NULL default 'alias',
`active` enum('n','y') NOT NULL,
PRIMARY KEY (`forwarding_id`),
KEY `server_id` (`server_id`,`source`)
KEY `server_id` (`server_id`,`source`),
KEY `type` (`type`)
) ENGINE=MyISAM AUTO_INCREMENT=1;
-- --------------------------------------------------------
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment