mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-02-04 11:43:19 +02:00
21 lines
458 B
C#
21 lines
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();
|
||
|
}
|
||
|
}
|
||
|
}
|