Boolean default should be a boolean

Fixes #729
This commit is contained in:
Qstick
2021-12-24 14:23:09 -06:00
committed by GitHub
parent 735be4f467
commit 34597e6ecb

View File

@@ -8,7 +8,7 @@ namespace NzbDrone.Core.Datastore.Migration
{
protected override void MainDbUpgrade()
{
Alter.Table("Notifications").AddColumn("OnApplicationUpdate").AsBoolean().WithDefaultValue(0);
Alter.Table("Notifications").AddColumn("OnApplicationUpdate").AsBoolean().WithDefaultValue(false);
}
}
}