From a79234de484aafa48b367409f4a6f812dd926dc7 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Wed, 7 Jan 2026 05:12:01 +0200 Subject: [PATCH] Remove constraint for TvRageId from Series table --- .../Datastore/Migration/034_remove_series_contraints.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/NzbDrone.Core/Datastore/Migration/034_remove_series_contraints.cs b/src/NzbDrone.Core/Datastore/Migration/034_remove_series_contraints.cs index 8eb08798a..7c0cc05c5 100644 --- a/src/NzbDrone.Core/Datastore/Migration/034_remove_series_contraints.cs +++ b/src/NzbDrone.Core/Datastore/Migration/034_remove_series_contraints.cs @@ -9,6 +9,7 @@ namespace NzbDrone.Core.Datastore.Migration protected override void MainDbUpgrade() { Alter.Table("Series") + .AlterColumn("TvRageId").AsInt32() .AlterColumn("ImdbId").AsString().Nullable() .AlterColumn("TitleSlug").AsString().Nullable(); }