mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-21 20:30:50 +02:00
Fix migration running in PostgreSQL
This commit is contained in:
parent
4990e537eb
commit
20c085a979
1 changed files with 1 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ public class health_restored_notification : NzbDroneMigrationBase
|
|||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Alter.Table("Notifications").AddColumn("OnHealthRestored").AsBoolean().WithDefaultValue(0);
|
||||
Alter.Table("Notifications").AddColumn("OnHealthRestored").AsBoolean().NotNullable().WithDefaultValue(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue