1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00

added index to History on date.

This commit is contained in:
kayone 2013-11-30 14:03:57 -08:00 committed by Mark McDowall
parent c973ab844a
commit 0b54210ab1

View File

@ -16,6 +16,7 @@ protected override void MainDbUpgrade()
Create.Index().OnTable("Episodes").OnColumn("SeriesId"); Create.Index().OnTable("Episodes").OnColumn("SeriesId");
Create.Index().OnTable("History").OnColumn("EpisodeId"); Create.Index().OnTable("History").OnColumn("EpisodeId");
Create.Index().OnTable("History").OnColumn("Date");
Create.Index().OnTable("Series").OnColumn("Path"); Create.Index().OnTable("Series").OnColumn("Path");
Create.Index().OnTable("Series").OnColumn("CleanTitle"); Create.Index().OnTable("Series").OnColumn("CleanTitle");