mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-06 11:02:40 +01:00
24 lines
495 B
C#
24 lines
495 B
C#
using System;
|
|
using System.Data;
|
|
using Migrator.Framework;
|
|
|
|
namespace NzbDrone.Core.Datastore.Migrations
|
|
{
|
|
|
|
[Migration(20110619)]
|
|
public class Migration20110619 : Migration
|
|
{
|
|
public override void Up()
|
|
{
|
|
if (Database.TableExists("Histories"))
|
|
{
|
|
Database.RemoveTable("Histories");
|
|
}
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |