(cherry picked from commit 9fc0a8d4d1109ee5a99e3776b4dcec6b3d458fbc)pull/2877/head
parent
33bb5960e5
commit
92e0a6e6c6
@ -0,0 +1,14 @@
|
||||
using FluentMigrator;
|
||||
using NzbDrone.Core.Datastore.Migration.Framework;
|
||||
|
||||
namespace NzbDrone.Core.Datastore.Migration
|
||||
{
|
||||
[Migration(57)]
|
||||
public class ImportListSearch : NzbDroneMigrationBase
|
||||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Alter.Table("ImportLists").AddColumn("ShouldSearch").AsInt32().WithDefaultValue(1);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue