parent
7e3dcb338c
commit
16f0486da2
@ -0,0 +1,15 @@
|
||||
using FluentMigrator;
|
||||
using NzbDrone.Core.Datastore.Migration.Framework;
|
||||
|
||||
namespace NzbDrone.Core.Datastore.Migration
|
||||
{
|
||||
[Migration(016)]
|
||||
public class cleanup_config : NzbDroneMigrationBase
|
||||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Delete.FromTable("Config").Row(new { Key = "movieinfolanguage" });
|
||||
Delete.FromTable("Config").Row(new { Key = "downloadclientworkingfolders" });
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue