From 7deff408774967c7df6fc5affed54916ad6dce11 Mon Sep 17 00:00:00 2001 From: Tyler Vigario Date: Sun, 14 Apr 2024 18:52:01 -0700 Subject: [PATCH] Revert migration changes --- .../Datastore/Migration/012_add_release_status.cs | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/src/NzbDrone.Core/Datastore/Migration/012_add_release_status.cs b/src/NzbDrone.Core/Datastore/Migration/012_add_release_status.cs index 8511b8f4c..0fa57a705 100644 --- a/src/NzbDrone.Core/Datastore/Migration/012_add_release_status.cs +++ b/src/NzbDrone.Core/Datastore/Migration/012_add_release_status.cs @@ -41,9 +41,7 @@ namespace NzbDrone.Core.Datastore.Migration Official = 0, Promotion = 1, Bootleg = 2, - Pseudo = 3, - Withdrawn = 4, - Cancelled = 5 + Pseudo = 3 } public class ProfileUpdater11 @@ -105,16 +103,6 @@ namespace NzbDrone.Core.Datastore.Migration { ReleaseStatus = (int)ReleaseStatus12.Pseudo, Allowed = false - }, - new ProfileItem12 - { - ReleaseStatus = (int)ReleaseStatus12.Withdrawn, - Allowed = false - }, - new ProfileItem12 - { - ReleaseStatus = (int)ReleaseStatus12.Cancelled, - Allowed = false } }; }