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.
Lidarr/src/NzbDrone.Core/Datastore/Migration/115_change_drone_factory_va...

21 lines
568 B

using FluentMigrator;
using NzbDrone.Core.Datastore.Migration.Framework;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Core.Datastore.Migration
{
[Migration(115)]
public class change_drone_factory_variable_name : NzbDroneMigrationBase
{
protected override void MainDbUpgrade()
{
Execute.Sql("DELETE FROM Config WHERE [Key] = 'downloadedepisodesfolder'");
Execute.Sql("DELETE FROM Config WHERE [Key] = 'downloadedepisodesscaninterval'");
}
}
}