mirror of https://github.com/Radarr/Radarr
Nzb Url column added.
This commit is contained in:
parent
4947252f93
commit
06fb34ce6c
|
@ -0,0 +1,15 @@
|
|||
using System.Data;
|
||||
using Migrator.Framework;
|
||||
|
||||
namespace NzbDrone.Core.Datastore.Migrations
|
||||
{
|
||||
|
||||
[Migration(20120414)]
|
||||
public class Migration20120414 : NzbDroneMigration
|
||||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Database.AddColumn("History", "Url", DbType.String, ColumnProperty.Null);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue