Radarr/NzbDrone.Core/Datastore/Migration/012_remove_custom_start_dat...

15 lines
367 B
C#
Raw Normal View History

2013-07-24 04:39:55 +00:00
using FluentMigrator;
using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration
{
[Migration(12)]
public class remove_custom_start_date : NzbDroneMigrationBase
{
protected override void MainDbUpgrade()
{
SQLiteAlter.DropColumns("Series", new[] { "CustomStartDate" });
}
}
}