1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Services/NzbDrone.Services.Service/Migrations/Migration20120210.cs
2012-02-10 16:48:20 -08:00

21 lines
500 B
C#

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();
}
}
}