aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Migrations/IMigrationRoutine.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Server/Migrations/IMigrationRoutine.cs')
-rw-r--r--Jellyfin.Server/Migrations/IMigrationRoutine.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/Jellyfin.Server/Migrations/IMigrationRoutine.cs b/Jellyfin.Server/Migrations/IMigrationRoutine.cs
index 20a3aa3d6..eab995d67 100644
--- a/Jellyfin.Server/Migrations/IMigrationRoutine.cs
+++ b/Jellyfin.Server/Migrations/IMigrationRoutine.cs
@@ -9,7 +9,12 @@ namespace Jellyfin.Server.Migrations
internal interface IMigrationRoutine
{
/// <summary>
- /// Gets the name of the migration, must be unique.
+ /// Gets the unique id for this migration. This should never be modified after the migration has been created.
+ /// </summary>
+ public Guid Id { get; }
+
+ /// <summary>
+ /// Gets the display name of the migration.
/// </summary>
public string Name { get; }