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.
24 lines
733 B
24 lines
733 B
namespace Jellyfin.Server.Migrations
|
|
{
|
|
/// <summary>
|
|
/// Configuration part that holds all migrations that were applied.
|
|
/// </summary>
|
|
public class MigrationOptions
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="MigrationOptions"/> class.
|
|
/// </summary>
|
|
public MigrationOptions()
|
|
{
|
|
Applied = System.Array.Empty<string>();
|
|
}
|
|
|
|
#pragma warning disable CA1819 // Properties should not return arrays
|
|
/// <summary>
|
|
/// Gets or sets the list of applied migration routine names.
|
|
/// </summary>
|
|
public string[] Applied { get; set; }
|
|
#pragma warning restore CA1819 // Properties should not return arrays
|
|
}
|
|
}
|