diff options
| author | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-03-08 16:05:31 +0100 |
|---|---|---|
| committer | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-03-08 16:05:31 +0100 |
| commit | 72bf920291d1c486aaf66544ccd6eb64c13e254b (patch) | |
| tree | e2d9b9dffd553964e775d067124866be3205d94b /Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs | |
| parent | 8dbb1c92573ba5cf3e4f8d953ffd6083a8ccbde4 (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/DisableTranscodingThrottling.cs')
| -rw-r--r-- | Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs b/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs index 279e7bbea..673f0e415 100644 --- a/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs +++ b/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs @@ -13,6 +13,9 @@ namespace Jellyfin.Server.Migrations.Routines internal class DisableTranscodingThrottling : IMigrationRoutine { /// <inheritdoc/> + public Guid Id => Guid.Parse("{4124C2CD-E939-4FFB-9BE9-9B311C413638}"); + + /// <inheritdoc/> public string Name => "DisableTranscodingThrottling"; /// <inheritdoc/> |
