You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Sonarr/src/NzbDrone.Core/Datastore/Migration/010_add_monitored.cs

22 lines
838 B

using FluentMigrator;
using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration
{
[Migration(10)]
public class add_monitored : NzbDroneMigrationBase
{
protected override void MainDbUpgrade()
{
Alter.Table("Episodes").AddColumn("Monitored").AsBoolean().Nullable();
Alter.Table("Seasons").AddColumn("Monitored").AsBoolean().Nullable();
Update.Table("Episodes").Set(new { Monitored = true }).Where(new { Ignored = false });
Update.Table("Episodes").Set(new { Monitored = false }).Where(new { Ignored = true });
Update.Table("Seasons").Set(new { Monitored = true }).Where(new { Ignored = false });
Update.Table("Seasons").Set(new { Monitored = false }).Where(new { Ignored = true });
}
}
}