mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Added absolute episode number to DB
This commit is contained in:
parent
0de4a43cc1
commit
070f6bb318
3 changed files with 19 additions and 3 deletions
17
NzbDrone.Core/Datastore/Migrations/Migration20121012.cs
Normal file
17
NzbDrone.Core/Datastore/Migrations/Migration20121012.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
using System;
|
||||
using System.Data;
|
||||
using Migrator.Framework;
|
||||
using NzbDrone.Common;
|
||||
|
||||
namespace NzbDrone.Core.Datastore.Migrations
|
||||
{
|
||||
|
||||
[Migration(20121012)]
|
||||
public class Migration20121012 : NzbDroneMigration
|
||||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Database.AddColumn("Episode", new Column("AbsoluteEpisodeNumber", DbType.Int32, ColumnProperty.Null));
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue