2011-10-12 03:44:19 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using Migrator.Framework;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Datastore.Migrations
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
[Migration(20111011)]
|
2012-01-15 05:47:13 +00:00
|
|
|
|
public class Migration20111011 : NzbDroneMigration
|
2011-10-12 03:44:19 +00:00
|
|
|
|
{
|
2012-01-15 05:47:13 +00:00
|
|
|
|
protected override void MainDbUpgrade()
|
2011-10-12 03:44:19 +00:00
|
|
|
|
{
|
|
|
|
|
Database.AddColumn("Episodes", "PostDownloadStatus", DbType.Int32, ColumnProperty.Null);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|