Sonarr/NzbDrone.Services/NzbDrone.Services.Service/Migrations/Migration20120206.cs

20 lines
446 B
C#
Raw Normal View History

using System;
using Migrator.Framework;
namespace NzbDrone.Services.Service.Migrations
{
[Migration(20120206)]
public class Migration20120206 : Migration
{
public override void Up()
{
Database.ExecuteNonQuery("ALTER TABLE ExceptionReports DROP CONSTRAINT PK_ExceptionReports");
}
2012-02-11 00:48:20 +00:00
public override void Down()
{
throw new NotImplementedException();
}
}
}