Przeglądaj źródła

add index on TopParentId

Luke Pulverenti 9 lat temu
rodzic
commit
446b50e556

+ 2 - 1
MediaBrowser.Server.Implementations/Persistence/SqliteItemRepository.cs

@@ -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);