add index on TopParentId

This commit is contained in:
Luke Pulverenti 2016-05-23 14:25:52 -04:00
parent 4fcdeaffee
commit 446b50e556
1 changed files with 2 additions and 1 deletions

View File

@ -246,7 +246,8 @@ namespace MediaBrowser.Server.Implementations.Persistence
string[] postQueries =
{
"create index if not exists idx_PresentationUniqueKey on TypedBaseItems(PresentationUniqueKey)",
"create index if not exists idx_Type on TypedBaseItems(Type)"
"create index if not exists idx_Type on TypedBaseItems(Type)",
"create index if not exists idx_TopParentId on TypedBaseItems(TopParentId)"
};
_connection.RunQueries(postQueries, Logger);