From 72b504ff911f1f7eddced6a993f7f692771af33a Mon Sep 17 00:00:00 2001 From: zhangdoa Date: Sun, 8 Oct 2023 15:23:32 +0200 Subject: [PATCH] Fix an issue that "Is Single File Release" column is not added to Tracks table. (cherry picked from commit 2d7e4bafaf4678f5aea1b91df2f44be5ffccd074) --- src/NzbDrone.Core/Datastore/Migration/073_add_flac_cue.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/NzbDrone.Core/Datastore/Migration/073_add_flac_cue.cs b/src/NzbDrone.Core/Datastore/Migration/073_add_flac_cue.cs index d4ad6b928..0f8b8f5d6 100644 --- a/src/NzbDrone.Core/Datastore/Migration/073_add_flac_cue.cs +++ b/src/NzbDrone.Core/Datastore/Migration/073_add_flac_cue.cs @@ -8,6 +8,7 @@ namespace NzbDrone.Core.Datastore.Migration { protected override void MainDbUpgrade() { + Alter.Table("Tracks").AddColumn("IsSingleFileRelease").AsBoolean().WithDefaultValue(false); Alter.Table("TrackFiles").AddColumn("IsSingleFileRelease").AsBoolean().WithDefaultValue(false); } }