From 34597e6ecb6261ac6b88ef5400513fe630aed29e Mon Sep 17 00:00:00 2001 From: Qstick Date: Fri, 24 Dec 2021 14:23:09 -0600 Subject: [PATCH] Boolean default should be a boolean Fixes #729 --- .../Datastore/Migration/014_add_on_update_to_notifications.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Datastore/Migration/014_add_on_update_to_notifications.cs b/src/NzbDrone.Core/Datastore/Migration/014_add_on_update_to_notifications.cs index 3fc05561a..0dbe6ffbe 100644 --- a/src/NzbDrone.Core/Datastore/Migration/014_add_on_update_to_notifications.cs +++ b/src/NzbDrone.Core/Datastore/Migration/014_add_on_update_to_notifications.cs @@ -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); } } }