1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-31 20:15:55 +00:00
Lidarr/NzbDrone.Services/NzbDrone.Services.Service/Migrations/Migration20120206.cs
2012-02-06 21:14:55 -08:00

21 lines
No EOL
473 B
C#

using System;
using System.Data;
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();
}
}
}