Store migration names alongside Ids in configuration in order to assist with development/debugging

This commit is contained in:
Mark Monteiro
2020-03-08 17:40:30 +01:00
parent 72bf920291
commit 9e89cbbc3a
2 changed files with 8 additions and 6 deletions

View File

@@ -13,12 +13,12 @@ namespace Jellyfin.Server.Migrations
/// </summary>
public MigrationOptions()
{
Applied = new List<Guid>();
Applied = new List<(Guid Id, string Name)>();
}
/// <summary>
/// Gets the list of applied migration routine names.
/// </summary>
public List<Guid> Applied { get; }
public List<(Guid Id, string Name)> Applied { get; }
}
}