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

17 lines
449 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("")]
2013-07-05 04:09:32 +00:00
[Migration(8)]
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 04:09:32 +00:00
SQLiteAlter.DropColumns("NamingConfig", new[] { "UseSceneName" });
}
2013-07-05 03:56:27 +00:00
}
}