You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/NzbDrone.Services/NzbDrone.Services.Service/Migrations/Migration20120210.cs

21 lines
500 B

using System;
using System.Data;
using System.Linq;
using Migrator.Framework;
namespace NzbDrone.Services.Service.Migrations
{
[Migration(20120210)]
public class Migration20120210 : Migration
{
public override void Up()
{
Database.ChangeColumn("ExceptionReports", new Column("LogMessage", DbType.String, 4000, ColumnProperty.NotNull));
}
public override void Down()
{
throw new NotImplementedException();
}
}
}