diff options
| author | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-03-08 17:40:30 +0100 |
|---|---|---|
| committer | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-03-08 17:40:30 +0100 |
| commit | 9e89cbbc3ad451b510a00fd7e214f6b942176f47 (patch) | |
| tree | 2c4e7dff0fa608296cce2863b4aca72f14714c56 /Jellyfin.Server/Migrations/MigrationOptions.cs | |
| parent | 72bf920291d1c486aaf66544ccd6eb64c13e254b (diff) | |
Store migration names alongside Ids in configuration in order to assist with development/debugging
Diffstat (limited to 'Jellyfin.Server/Migrations/MigrationOptions.cs')
| -rw-r--r-- | Jellyfin.Server/Migrations/MigrationOptions.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Server/Migrations/MigrationOptions.cs b/Jellyfin.Server/Migrations/MigrationOptions.cs index d95354145..816dd9ee7 100644 --- a/Jellyfin.Server/Migrations/MigrationOptions.cs +++ b/Jellyfin.Server/Migrations/MigrationOptions.cs @@ -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; } } } |
