jellyfin/Jellyfin.Server/Migrations/MigrationOptions.cs
Mark Monteiro 72bf920291 Use a Guid to uniquely identify migrations instead of a string name
Also use a list instead of an array to store executed migrations in the configuration class
2020-03-08 16:05:31 +01:00

25 lines
619 B
C#

using System;
using System.Collections.Generic;
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 = new List<Guid>();
}
/// <summary>
/// Gets the list of applied migration routine names.
/// </summary>
public List<Guid> Applied { get; }
}
}