You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
828 B
31 lines
828 B
using System;
|
|
|
|
namespace Jellyfin.Server.Migrations
|
|
{
|
|
/// <summary>
|
|
/// Interface that describes a migration routine.
|
|
/// </summary>
|
|
internal interface IMigrationRoutine
|
|
{
|
|
/// <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>
|
|
public string Name { get; }
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating whether to perform migration on a new install.
|
|
/// </summary>
|
|
public bool PerformOnNewInstall { get; }
|
|
|
|
/// <summary>
|
|
/// Execute the migration routine.
|
|
/// </summary>
|
|
public void Perform();
|
|
}
|
|
}
|