jellyfin/Jellyfin.Server/Migrations/IMigrationRoutine.cs

31 lines
828 B
C#
Raw Normal View History

using System;
namespace Jellyfin.Server.Migrations
{
2020-03-05 12:09:33 -05:00
/// <summary>
2020-03-06 15:51:50 -05:00
/// Interface that describes a migration routine.
2020-03-05 12:09:33 -05:00
/// </summary>
2020-03-06 15:51:50 -05:00
internal interface IMigrationRoutine
2020-03-05 12:09:33 -05: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 15:51:50 -05:00
public string Name { get; }
/// <summary>
/// Gets a value indicating whether to perform migration on a new install.
/// </summary>
public bool PerformOnNewInstall { get; }
2020-03-05 12:09:33 -05:00
/// <summary>
2020-03-05 12:52:00 -05:00
/// Execute the migration routine.
2020-03-05 12:09:33 -05:00
/// </summary>
public void Perform();
2020-03-05 12:09:33 -05:00
}
}