1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-26 17:59:14 +00:00
Radarr/NzbDrone.Services/NzbDrone.Services.Service/Migrations/Migration20120210.cs
2012-02-10 16:48:20 -08:00

21 lines
No EOL
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();
}
}
}