mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02: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);
|
|
}
|
|
}
|
|
} |