1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-26 09:47:39 +00:00
Sonarr/NzbDrone.Core/Datastore/Migrations/Migration20121226.cs
Mark McDowall 89cfb5c9b1 TVRageMapping updates
Fixed: Issue matching TVDB series to TVRage series in some situations
2012-12-26 16:16:15 -08:00

16 lines
No EOL
401 B
C#

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));
}
}
}