mirror of https://github.com/Radarr/Radarr
15 lines
361 B
C#
15 lines
361 B
C#
|
using System.Data;
|
|||
|
using Migrator.Framework;
|
|||
|
|
|||
|
namespace NzbDrone.Core.Datastore.Migrations
|
|||
|
{
|
|||
|
|
|||
|
[Migration(20120504)]
|
|||
|
public class Migration20120504 : NzbDroneMigration
|
|||
|
{
|
|||
|
protected override void MainDbUpgrade()
|
|||
|
{
|
|||
|
Database.AddColumn("NewznabDefinitions", "BuiltIn", DbType.Boolean, ColumnProperty.Null);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|