mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
NzbInfoUrl added to history and episode parse result, will be added to history item before being added to the DB.
This commit is contained in:
parent
0c3de6964f
commit
ce0a6f8b86
4 changed files with 7 additions and 4 deletions
15
NzbDrone.Core/Datastore/Migrations/Migration20120430.cs
Normal file
15
NzbDrone.Core/Datastore/Migrations/Migration20120430.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
using System.Data;
|
||||
using Migrator.Framework;
|
||||
|
||||
namespace NzbDrone.Core.Datastore.Migrations
|
||||
{
|
||||
|
||||
[Migration(20120430)]
|
||||
public class Migration20120430 : NzbDroneMigration
|
||||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Database.AddColumn("History", "NzbInfoUrl", DbType.String, ColumnProperty.Null);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue