mirror of
https://github.com/Readarr/Readarr
synced 2025-12-15 21:02:40 +01:00
Make migration 027 Postgres friendly
This commit is contained in:
parent
427176d7d2
commit
5039ba823c
1 changed files with 2 additions and 2 deletions
|
|
@ -8,8 +8,8 @@ public class remove_omg : NzbDroneMigrationBase
|
|||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Execute.Sql("DELETE FROM Indexers WHERE Implementation = 'Omgwtfnzbs'");
|
||||
Execute.Sql("DELETE FROM Indexers WHERE Implementation = 'Rarbg'");
|
||||
Delete.FromTable("Indexers").Row(new { Implementation = "Omgwtfnzbs" });
|
||||
Delete.FromTable("Indexers").Row(new { Implementation = "Rarbg" });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue