1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-25 17:27:59 +00:00
Radarr/NzbDrone.Core/Datastore/Migrations/Migration20120802.cs
Mark McDowall bee6914062 Allow scene name to be used for renaming
New: Added option to use scene name for episodefiles
2012-08-03 00:01:34 -07:00

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));
}
}
}