Sonarr/NzbDrone.Core/Datastore/Migration/007_remove_backlog.cs

16 lines
370 B
C#
Raw Normal View History

using FluentMigrator;
using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration
{
2013-07-05 03:56:27 +00:00
[Tags("")]
[Migration(7)]
public class remove_backlog : NzbDroneMigrationBase
{
protected override void MainDbUpgrade()
{
2013-07-05 03:56:27 +00:00
SQLiteAlter.DropColumns("Series", new[] { "BacklogSetting" });
}
2013-07-05 03:56:27 +00:00
}
}