mirror of
https://github.com/Radarr/Radarr
synced 2025-01-01 21:04:22 +00:00
New: Keep DB Migration to fix 147
Co-Authored-By: ta264 <ta264@users.noreply.github.com>
This commit is contained in:
parent
d2d2020573
commit
f7163451e1
1 changed files with 20 additions and 0 deletions
|
@ -0,0 +1,20 @@
|
|||
using FluentMigrator;
|
||||
using NzbDrone.Core.Datastore.Migration.Framework;
|
||||
|
||||
namespace NzbDrone.Core.Datastore.Migration
|
||||
{
|
||||
[Migration(162)]
|
||||
public class fix_profile_format_default : NzbDroneMigrationBase
|
||||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
// badValue was set as default in 147 but it's invalid JSON
|
||||
// so System.Text.Json refuses to parse it (even though Newtonsoft allows it)
|
||||
var badValue = "[{format:0, allowed:true}]";
|
||||
var defaultValue = "[{\"format\":0, \"allowed\":true}]";
|
||||
Alter.Column("FormatItems").OnTable("Profiles").AsString().WithDefaultValue(defaultValue);
|
||||
|
||||
Update.Table("Profiles").Set(new { FormatItems = defaultValue }).Where(new { FormatItems = badValue });
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue