mirror of
https://github.com/Radarr/Radarr
synced 2024-12-26 01:38:24 +00:00
Updated ForceMigration()
This commit is contained in:
parent
680ea45839
commit
8bf80ecda0
1 changed files with 7 additions and 6 deletions
|
@ -139,11 +139,12 @@ private static void BindJobs()
|
|||
|
||||
private static void ForceMigration(IRepository repository)
|
||||
{
|
||||
repository.GetPaged<Series>(0, 1);
|
||||
repository.GetPaged<EpisodeFile>(0, 1);
|
||||
repository.GetPaged<Episode>(0, 1);
|
||||
repository.GetPaged<Season>(0, 1);
|
||||
repository.GetPaged<History>(0, 1);
|
||||
repository.All<Series>().Count();
|
||||
repository.All<Season>().Count();
|
||||
repository.All<Episode>().Count();
|
||||
repository.All<EpisodeFile>().Count();
|
||||
repository.All<QualityProfile>().Count();
|
||||
repository.All<History>().Count();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
Loading…
Reference in a new issue