mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Allow scene name to be used for renaming
New: Added option to use scene name for episodefiles
This commit is contained in:
parent
38eeda8c37
commit
bee6914062
15 changed files with 647 additions and 511 deletions
17
NzbDrone.Core/Datastore/Migrations/Migration20120802.cs
Normal file
17
NzbDrone.Core/Datastore/Migrations/Migration20120802.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
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));
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue