Moved migration routines to their own directory

This commit is contained in:
Vasily 2020-03-05 20:40:17 +03:00
parent ccafebca68
commit 55b429e5e8
3 changed files with 4 additions and 4 deletions

View File

@ -15,8 +15,8 @@ namespace Jellyfin.Server.Migrations
/// </summary>
internal static readonly IUpdater[] Migrations =
{
new DisableTranscodingThrottling(),
new DisableZealousLogging()
new Routines.DisableTranscodingThrottling(),
new Routines.DisableZealousLogging()
};
/// <summary>

View File

@ -5,7 +5,7 @@ using MediaBrowser.Model.Configuration;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
namespace Jellyfin.Server.Migrations
namespace Jellyfin.Server.Migrations.Routines
{
/// <summary>
/// Updater that takes care of bringing configuration up to 10.5.0 standards.

View File

@ -7,7 +7,7 @@ using Microsoft.Extensions.Logging;
using Serilog;
using ILogger = Microsoft.Extensions.Logging.ILogger;
namespace Jellyfin.Server.Migrations
namespace Jellyfin.Server.Migrations.Routines
{
/// <summary>
/// Updater that takes care of bringing configuration up to 10.5.0 standards.