mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-03 01:01:34 +02:00
Allow scene name to be used for renaming
New: Added option to use scene name for episodefiles
This commit is contained in:
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));
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user