mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-26 22:46:53 -04:00
Fixed: Speed up RSS sync
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using FluentMigrator;
|
||||
using NzbDrone.Core.Datastore.Migration.Framework;
|
||||
|
||||
namespace NzbDrone.Core.Datastore.Migration
|
||||
{
|
||||
[Migration(185)]
|
||||
public class add_alternative_title_indices : NzbDroneMigrationBase
|
||||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Create.Index().OnTable("AlternativeTitles").OnColumn("CleanTitle");
|
||||
Create.Index().OnTable("MovieTranslations").OnColumn("CleanTitle");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user