mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 18:42:42 +01:00
b930eb0993
Built-in Newznab providers cannot be deleted (they would be re-added anyways), nor can the URL be changed.
15 lines
361 B
C#
15 lines
361 B
C#
using System.Data;
|
|
using Migrator.Framework;
|
|
|
|
namespace NzbDrone.Core.Datastore.Migrations
|
|
{
|
|
|
|
[Migration(20120504)]
|
|
public class Migration20120504 : NzbDroneMigration
|
|
{
|
|
protected override void MainDbUpgrade()
|
|
{
|
|
Database.AddColumn("NewznabDefinitions", "BuiltIn", DbType.Boolean, ColumnProperty.Null);
|
|
}
|
|
}
|
|
} |