mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
BacklogStatus added to individually control which series are included in backlog searches. Applies to Backlog and RecentBacklog jobs. Editable in Series/MassEdit and Series Edit.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using System.Data;
|
||||
using Migrator.Framework;
|
||||
|
||||
namespace NzbDrone.Core.Datastore.Migrations
|
||||
{
|
||||
[Migration(20120123)]
|
||||
public class Migration20120123 : NzbDroneMigration
|
||||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Database.AddColumn("Series", "BacklogStatus", DbType.Int32, ColumnProperty.Null);
|
||||
Database.ExecuteNonQuery("UPDATE Series SET BacklogStatus = 2");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user