mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Added EpisodeAiredAfter to server side
This commit is contained in:
parent
d17d1b294a
commit
713c4225c0
8 changed files with 217 additions and 2 deletions
17
NzbDrone.Core/Datastore/Migrations/Migration20120918.cs
Normal file
17
NzbDrone.Core/Datastore/Migrations/Migration20120918.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
using System;
|
||||
using System.Data;
|
||||
using Migrator.Framework;
|
||||
using NzbDrone.Common;
|
||||
|
||||
namespace NzbDrone.Core.Datastore.Migrations
|
||||
{
|
||||
|
||||
[Migration(20120918)]
|
||||
public class Migration20120918 : NzbDroneMigration
|
||||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Database.AddColumn("Series", new Column("DownloadEpisodesAiredAfter", DbType.DateTime, ColumnProperty.Null));
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue