mirror of
https://github.com/Radarr/Radarr
synced 2026-05-09 11:10:23 +02:00
Add RetroApplyTags column to additional tables
Enhanced the migration script to include the RetroApplyTags column for the Notifications and Indexers tables, ensuring consistent data structure across related tables. This column is added with a default value of 0, similar to the ImportLists table.
This commit is contained in:
parent
0cb0a2f46e
commit
fb297adcf0
1 changed files with 2 additions and 0 deletions
|
|
@ -9,5 +9,7 @@ public class add_retroapply_to_importlists : NzbDroneMigrationBase
|
|||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Alter.Table("ImportLists").AddColumn("RetroApplyTags").AsInt32().WithDefaultValue(0);
|
||||
Alter.Table("Notifications").AddColumn("RetroApplyTags").AsInt32().WithDefaultValue(0);
|
||||
Alter.Table("Indexers").AddColumn("RetroApplyTags").AsInt32().WithDefaultValue(0);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue