mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07: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:
parent
fb17765d3a
commit
9eb022fdf4
14 changed files with 424 additions and 26 deletions
15
NzbDrone.Core/Datastore/Migrations/Migration20120123.cs
Normal file
15
NzbDrone.Core/Datastore/Migrations/Migration20120123.cs
Normal file
|
@ -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");
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue