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

(cherry picked from commit 2d7e4bafaf4678f5aea1b91df2f44be5ffccd074)
This commit is contained in:
zhangdoa 2023-10-08 15:23:32 +02:00
commit 72b504ff91

View file

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