1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-21 00:41:43 +02:00
Radarr/NzbDrone.Core/Datastore/Migrations/Migration20120123.cs
2012-01-25 17:02:21 -08:00

14 lines
353 B
C#

using System.Data;
using Migrator.Framework;
namespace NzbDrone.Core.Datastore.Migrations
{
[Migration(20120123)]
public class Migration20120123 : NzbDroneMigration
{
protected override void MainDbUpgrade()
{
Database.AddColumn("Series", "BacklogSetting", DbType.Int32, ColumnProperty.Null);
}
}
}