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 } }; }