mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 06:23:03 +03:00
Store migration names alongside Ids in configuration in order to assist with development/debugging
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user