mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-03 01:01:34 +02:00
Deleting any series with seriesid =0 during migration.
This commit is contained in:
14
NzbDrone.Core/Datastore/Migrations/Migration20120118.cs
Normal file
14
NzbDrone.Core/Datastore/Migrations/Migration20120118.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Migrator.Framework;
|
||||
|
||||
namespace NzbDrone.Core.Datastore.Migrations
|
||||
{
|
||||
|
||||
[Migration(20120118)]
|
||||
public class Migration20120118 : NzbDroneMigration
|
||||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Database.ExecuteNonQuery("DELETE FROM SERIES WHERE SeriesID = 0");
|
||||
}
|
||||
}
|
||||
}
|
@@ -208,6 +208,7 @@
|
||||
<Compile Include="Datastore\MigrationLogger.cs" />
|
||||
<Compile Include="Datastore\MigrationsHelper.cs" />
|
||||
<Compile Include="Datastore\CustomeMapper.cs" />
|
||||
<Compile Include="Datastore\Migrations\Migration20120118.cs" />
|
||||
<Compile Include="Datastore\Migrations\Migration20111125.cs" />
|
||||
<Compile Include="Datastore\Migrations\Migration20111112.cs" />
|
||||
<Compile Include="Datastore\Migrations\Migration20111011.cs" />
|
||||
|
Reference in New Issue
Block a user