aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Migrations/Routines/CreateUserLoggingConfigFile.cs
diff options
context:
space:
mode:
authorMark Monteiro <marknr.monteiro@protonmail.com>2020-03-08 16:05:31 +0100
committerMark Monteiro <marknr.monteiro@protonmail.com>2020-03-08 16:05:31 +0100
commit72bf920291d1c486aaf66544ccd6eb64c13e254b (patch)
treee2d9b9dffd553964e775d067124866be3205d94b /Jellyfin.Server/Migrations/Routines/CreateUserLoggingConfigFile.cs
parent8dbb1c92573ba5cf3e4f8d953ffd6083a8ccbde4 (diff)
Use a Guid to uniquely identify migrations instead of a string name
Also use a list instead of an array to store executed migrations in the configuration class
Diffstat (limited to 'Jellyfin.Server/Migrations/Routines/CreateUserLoggingConfigFile.cs')
-rw-r--r--Jellyfin.Server/Migrations/Routines/CreateUserLoggingConfigFile.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/Jellyfin.Server/Migrations/Routines/CreateUserLoggingConfigFile.cs b/Jellyfin.Server/Migrations/Routines/CreateUserLoggingConfigFile.cs
index 834099ea0..3bc32c047 100644
--- a/Jellyfin.Server/Migrations/Routines/CreateUserLoggingConfigFile.cs
+++ b/Jellyfin.Server/Migrations/Routines/CreateUserLoggingConfigFile.cs
@@ -37,6 +37,9 @@ namespace Jellyfin.Server.Migrations.Routines
};
/// <inheritdoc/>
+ public Guid Id => Guid.Parse("{EF103419-8451-40D8-9F34-D1A8E93A1679}");
+
+ /// <inheritdoc/>
public string Name => "CreateLoggingConfigHeirarchy";
/// <inheritdoc/>