refactor: market SQL optimization

This commit is contained in:
Martin Ambrus
2017-10-23 18:09:41 +02:00
parent ffeffd30e9
commit e3ce9427e0
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -958,7 +958,8 @@ CREATE TABLE IF NOT EXISTS `%PREFIX%market` (
`maxtime` int(11) NULL,
`alliance` int(11) NULL,
`merchant` tinyint(2) NULL,
PRIMARY KEY (`id`)
PRIMARY KEY (`id`),
KEY `vref-accept` (`vref`,`accept`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--