mirror of
https://github.com/Lidarr/Lidarr
synced 2026-04-30 08:31:27 +02:00
17 lines
No EOL
411 B
C#
17 lines
No EOL
411 B
C#
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));
|
|
}
|
|
}
|
|
} |