mirror of
https://github.com/Radarr/Radarr
synced 2024-12-25 17:27:59 +00:00
bee6914062
New: Added option to use scene name for episodefiles
17 lines
No EOL
405 B
C#
17 lines
No EOL
405 B
C#
using System;
|
|
using System.Data;
|
|
using Migrator.Framework;
|
|
using NzbDrone.Common;
|
|
|
|
namespace NzbDrone.Core.Datastore.Migrations
|
|
{
|
|
|
|
[Migration(20120802)]
|
|
public class Migration20120802 : NzbDroneMigration
|
|
{
|
|
protected override void MainDbUpgrade()
|
|
{
|
|
Database.AddColumn("EpisodeFiles", new Column("SceneName", DbType.String, ColumnProperty.Null));
|
|
}
|
|
}
|
|
} |