mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
TVRageMapping updates
Fixed: Issue matching TVDB series to TVRage series in some situations
This commit is contained in:
parent
afef5ba0f4
commit
89cfb5c9b1
7 changed files with 45 additions and 3 deletions
16
NzbDrone.Core/Datastore/Migrations/Migration20121226.cs
Normal file
16
NzbDrone.Core/Datastore/Migrations/Migration20121226.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
using System;
|
||||
using System.Data;
|
||||
using Migrator.Framework;
|
||||
using NzbDrone.Common;
|
||||
|
||||
namespace NzbDrone.Core.Datastore.Migrations
|
||||
{
|
||||
[Migration(20121226)]
|
||||
public class Migration20121226 : NzbDroneMigration
|
||||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Database.AddColumn("Series", new Column("FirstAired", DbType.DateTime, ColumnProperty.Null));
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue