2020-03-05 15:21:27 +00:00
|
|
|
using System;
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
|
|
namespace Jellyfin.Server.Migrations
|
|
|
|
{
|
2020-03-05 17:09:33 +00:00
|
|
|
/// <summary>
|
2020-03-06 20:51:50 +00:00
|
|
|
/// Interface that describes a migration routine.
|
2020-03-05 17:09:33 +00:00
|
|
|
/// </summary>
|
2020-03-06 20:51:50 +00:00
|
|
|
internal interface IMigrationRoutine
|
2020-03-05 17:09:33 +00:00
|
|
|
{
|
2020-03-05 15:21:27 +00:00
|
|
|
/// <summary>
|
2020-03-05 17:09:33 +00:00
|
|
|
/// Gets the name of the migration, must be unique.
|
2020-03-05 15:21:27 +00:00
|
|
|
/// </summary>
|
2020-03-06 20:51:50 +00:00
|
|
|
public string Name { get; }
|
2020-03-05 15:21:27 +00:00
|
|
|
|
2020-03-05 17:09:33 +00:00
|
|
|
/// <summary>
|
2020-03-05 17:52:00 +00:00
|
|
|
/// Execute the migration routine.
|
2020-03-05 17:09:33 +00:00
|
|
|
/// </summary>
|
|
|
|
/// <param name="host">Host that hosts current version.</param>
|
|
|
|
/// <param name="logger">Host logger.</param>
|
2020-03-06 20:51:50 +00:00
|
|
|
public void Perform(CoreAppHost host, ILogger logger);
|
2020-03-05 17:09:33 +00:00
|
|
|
}
|
2020-03-05 15:21:27 +00:00
|
|
|
}
|