parent
19414912ad
commit
2c42fc19e5
@ -0,0 +1,20 @@
|
||||
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'");
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in new issue