2012-04-15 00:57:15 +00:00
|
|
|
|
using System.Data;
|
|
|
|
|
using Migrator.Framework;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Datastore.Migrations
|
|
|
|
|
{
|
|
|
|
|
|
2012-05-02 15:37:09 +00:00
|
|
|
|
[Migration(20120430)]
|
|
|
|
|
public class Migration20120430 : NzbDroneMigration
|
2012-04-15 00:57:15 +00:00
|
|
|
|
{
|
|
|
|
|
protected override void MainDbUpgrade()
|
|
|
|
|
{
|
2012-05-02 15:37:09 +00:00
|
|
|
|
Database.AddColumn("History", "NzbInfoUrl", DbType.String, ColumnProperty.Null);
|
2012-04-15 00:57:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|