Added BannerDownloadJob, it will run every 30 days.

New series will have their banner downloaded on import.
This commit is contained in:
Mark McDowall 2011-09-10 01:42:05 -07:00
commit dfd0720872
10 changed files with 383 additions and 2 deletions

View file

@ -0,0 +1,22 @@
using System;
using System.Data;
using Migrator.Framework;
namespace NzbDrone.Core.Datastore.Migrations
{
[Migration(20110909)]
public class Migration20110909 : Migration
{
public override void Up()
{
Database.AddColumn("Series", "Runtime", DbType.Int32, ColumnProperty.Null);
Database.AddColumn("Series", "BannerUrl", DbType.String, ColumnProperty.Null);
}
public override void Down()
{
throw new NotImplementedException();
}
}
}