diff --git a/src/NzbDrone.Core/Datastore/Migration/020_add_download_history.cs b/src/NzbDrone.Core/Datastore/Migration/020_add_download_history.cs index e6a422585..aa972e41d 100644 --- a/src/NzbDrone.Core/Datastore/Migration/020_add_download_history.cs +++ b/src/NzbDrone.Core/Datastore/Migration/020_add_download_history.cs @@ -25,7 +25,7 @@ namespace NzbDrone.Core.Datastore.Migration .WithColumn("Data").AsString().Nullable(); Create.Index().OnTable("DownloadHistory").OnColumn("EventType"); - Create.Index().OnTable("DownloadHistory").OnColumn("SeriesId"); + Create.Index().OnTable("DownloadHistory").OnColumn("AuthorId"); Create.Index().OnTable("DownloadHistory").OnColumn("DownloadId"); Execute.WithConnection(InitialImportedDownloadHistory);