Add DB index

Compliments #6555
This commit is contained in:
Matt Smith
2015-01-12 23:15:09 +00:00
parent d5950a62a4
commit 4786884917

View File

@@ -202,6 +202,11 @@ CREATE TABLE `library` (
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Create an index to speed up the libary
--
CREATE INDEX deleted_idx ON `library` (`deleted`);
--
-- Table structure for table `player`
--