Fix an issue that "Is Single File Release" column is not added to Tracks table.

(cherry picked from commit 2d7e4bafaf4678f5aea1b91df2f44be5ffccd074)
pull/4200/head
zhangdoa 7 months ago
parent a7f07df588
commit 72b504ff91

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

Loading…
Cancel
Save