1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-05 23:57:20 +02:00
Radarr/NzbDrone.Services/NzbDrone.Services.Service/Migrations/Migration20120206.cs
2012-02-10 16:48:20 -08:00

20 lines
446 B
C#

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");
}
public override void Down()
{
throw new NotImplementedException();
}
}
}