jellyfin/Jellyfin.Server/Migrations/IMigrationRoutine.cs

29 lines
844 B
C#
Raw Normal View History

using System;
using Microsoft.Extensions.Logging;
namespace Jellyfin.Server.Migrations
{
2020-03-05 18:09:33 +01:00
/// <summary>
2020-03-06 21:51:50 +01:00
/// Interface that describes a migration routine.
2020-03-05 18:09:33 +01:00
/// </summary>
2020-03-06 21:51:50 +01:00
internal interface IMigrationRoutine
2020-03-05 18:09:33 +01:00
{
/// <summary>
/// Gets the unique id for this migration. This should never be modified after the migration has been created.
/// </summary>
public Guid Id { get; }
/// <summary>
/// Gets the display name of the migration.
/// </summary>
2020-03-06 21:51:50 +01:00
public string Name { get; }
2020-03-05 18:09:33 +01:00
/// <summary>
2020-03-05 18:52:00 +01:00
/// Execute the migration routine.
2020-03-05 18:09:33 +01:00
/// </summary>
/// <param name="host">Host that hosts current version.</param>
/// <param name="logger">Host logger.</param>
2020-03-06 21:51:50 +01:00
public void Perform(CoreAppHost host, ILogger logger);
2020-03-05 18:09:33 +01:00
}
}