new index on bans table

This commit is contained in:
Michael Foster 2013-09-02 09:46:42 +10:00
parent 22fcca343f
commit 9494e0185c
2 changed files with 5 additions and 2 deletions

View file

@ -49,7 +49,8 @@ CREATE TABLE IF NOT EXISTS `bans` (
`board` varchar(58) CHARACTER SET utf8 DEFAULT NULL,
`seen` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
KEY `ip` (`ip`)
KEY `ip` (`ip`),
KEY `seen` (`seen`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------