aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Migrations/MigrationOptions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Server/Migrations/MigrationOptions.cs')
-rw-r--r--Jellyfin.Server/Migrations/MigrationOptions.cs11
1 files changed, 6 insertions, 5 deletions
diff --git a/Jellyfin.Server/Migrations/MigrationOptions.cs b/Jellyfin.Server/Migrations/MigrationOptions.cs
index 6b7831158..d95354145 100644
--- a/Jellyfin.Server/Migrations/MigrationOptions.cs
+++ b/Jellyfin.Server/Migrations/MigrationOptions.cs
@@ -1,3 +1,6 @@
+using System;
+using System.Collections.Generic;
+
namespace Jellyfin.Server.Migrations
{
/// <summary>
@@ -10,14 +13,12 @@ namespace Jellyfin.Server.Migrations
/// </summary>
public MigrationOptions()
{
- Applied = System.Array.Empty<string>();
+ Applied = new List<Guid>();
}
-#pragma warning disable CA1819 // Properties should not return arrays
/// <summary>
- /// Gets or sets the list of applied migration routine names.
+ /// Gets the list of applied migration routine names.
/// </summary>
- public string[] Applied { get; set; }
-#pragma warning restore CA1819 // Properties should not return arrays
+ public List<Guid> Applied { get; }
}
}