appVersion table should have an index on appId field as we frequently query this table
using appId
This commit is contained in:
@@ -58,7 +58,8 @@ create table appVersion (
|
||||
submitTime timestamp(14) NOT NULL,
|
||||
submitterId int(11) NOT NULL default '0',
|
||||
queued enum('true','false','rejected') NOT NULL default 'false',
|
||||
key(versionId)
|
||||
key(versionId),
|
||||
index(appId)
|
||||
);
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user