Removed CustomStartDate

This commit is contained in:
Mark McDowall
2013-07-23 21:39:55 -07:00
parent e706e148fd
commit 7689b50dee
9 changed files with 19 additions and 188 deletions
@@ -0,0 +1,15 @@
using FluentMigrator;
using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration
{
[Tags("")]
[Migration(12)]
public class remove_custom_start_date : NzbDroneMigrationBase
{
protected override void MainDbUpgrade()
{
SQLiteAlter.DropColumns("Series", new[] { "CustomStartDate" });
}
}
}