mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-27 22:56:45 -04:00
Fixed: Remove MediaBrowser metadata and pushalot
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using FluentMigrator;
|
||||
using NzbDrone.Core.Datastore.Migration.Framework;
|
||||
|
||||
namespace NzbDrone.Core.Datastore.Migration
|
||||
{
|
||||
[Migration(20)]
|
||||
public class remove_pushalot : NzbDroneMigrationBase
|
||||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Delete.FromTable("Notifications").Row(new { Implementation = "Pushalot" });
|
||||
Delete.FromTable("Metadata").Row(new { Implementation = "MediaBrowserMetadata" });
|
||||
Delete.FromTable("MetadataFiles").Row(new { Consumer = "MediaBrowserMetadata" });
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user