mirror of https://github.com/Radarr/Radarr
28 lines
1.0 KiB
C#
28 lines
1.0 KiB
C#
using System;
|
|
using System.Data;
|
|
using Migrator.Framework;
|
|
|
|
namespace NzbDrone.Core.Datastore.Migrations
|
|
{
|
|
|
|
[Migration(20111112)]
|
|
public class Migration2011112 : Migration
|
|
{
|
|
public override void Up()
|
|
{
|
|
Database.AddTable("NewznabDefinitions", new[]
|
|
{
|
|
new Column("Id", DbType.Int32, ColumnProperty.PrimaryKeyWithIdentity),
|
|
new Column("Enable", DbType.Boolean, ColumnProperty.NotNull),
|
|
new Column("Name", DbType.String, ColumnProperty.Null),
|
|
new Column("Url", DbType.String, ColumnProperty.Null),
|
|
new Column("ApiKey", DbType.String, ColumnProperty.Null)
|
|
});
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |