Performance: Add expires index to antispm table to make purging old hashes a little quicker

This commit is contained in:
Michael Foster 2013-08-28 18:39:45 +10:00
parent f8f375ec30
commit 10d59e949a
2 changed files with 5 additions and 2 deletions

View file

@ -29,7 +29,8 @@ CREATE TABLE IF NOT EXISTS `antispam` (
`expires` int(11) DEFAULT NULL,
`passed` smallint(6) NOT NULL,
PRIMARY KEY (`hash`),
KEY `board` (`board`,`thread`)
KEY `board` (`board`,`thread`),
KEY `expires` (`expires`)
) ENGINE=MyISAM DEFAULT CHARSET=ascii COLLATE=ascii_bin;
-- --------------------------------------------------------