aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Persistence
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2016-05-29 15:01:34 -0400
committerLuke <luke.pulverenti@gmail.com>2016-05-29 15:01:34 -0400
commit8ec9b73eae79a53274b841cbe1f36738130195c6 (patch)
tree375b02205192b6caa486153d6f01c3ec013c6e22 /MediaBrowser.Server.Implementations/Persistence
parent52a327f4df691141a8829c576d0b45e0a3ae1114 (diff)
parentbed6d6bd38be118f9bb8edd79beade0d14da54bd (diff)
Merge pull request #1790 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Server.Implementations/Persistence')
-rw-r--r--MediaBrowser.Server.Implementations/Persistence/SqliteItemRepository.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Persistence/SqliteItemRepository.cs b/MediaBrowser.Server.Implementations/Persistence/SqliteItemRepository.cs
index b1f43d20f..2775389a2 100644
--- a/MediaBrowser.Server.Implementations/Persistence/SqliteItemRepository.cs
+++ b/MediaBrowser.Server.Implementations/Persistence/SqliteItemRepository.cs
@@ -248,7 +248,7 @@ namespace MediaBrowser.Server.Implementations.Persistence
"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_TopParentId on TypedBaseItems(TopParentId)",
- //"create index if not exists idx_TypeTopParentId on TypedBaseItems(Type,TopParentId)"
+ "create index if not exists idx_TypeTopParentId on TypedBaseItems(Type,TopParentId)"
};
_connection.RunQueries(postQueries, Logger);