mirror of
https://github.com/Radarr/Radarr
synced 2024-12-28 02:40:01 +00:00
5098ea3249
Tests added to support new Statuses. PostDownloadScanJob will update PostDownloadStatus for failed or unpacking. ImportFile will set the PostDownloadStatus to Processed when added to the database.
21 lines
No EOL
458 B
C#
21 lines
No EOL
458 B
C#
using System;
|
|
using System.Data;
|
|
using Migrator.Framework;
|
|
|
|
namespace NzbDrone.Core.Datastore.Migrations
|
|
{
|
|
|
|
[Migration(20111011)]
|
|
public class Migration20111011 : Migration
|
|
{
|
|
public override void Up()
|
|
{
|
|
Database.AddColumn("Episodes", "PostDownloadStatus", DbType.Int32, ColumnProperty.Null);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |