From a38a318135776a6fa124dda20c5e5d0877f55ad8 Mon Sep 17 00:00:00 2001 From: Seraphys Date: Fri, 28 Aug 2026 19:51:38 +0000 Subject: [PATCH] Fix German Bluray Tier 03 --- ops/59.fix-german-bluray-tier-03.sql | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 ops/59.fix-german-bluray-tier-03.sql diff --git a/ops/59.fix-german-bluray-tier-03.sql b/ops/59.fix-german-bluray-tier-03.sql new file mode 100644 index 0000000..be4b7b4 --- /dev/null +++ b/ops/59.fix-german-bluray-tier-03.sql @@ -0,0 +1,16 @@ +-- @operation: export +-- @entity: batch +-- @name: Fix German Bluray Tier 03 +-- @exportedAt: 2026-08-28T19:51:36.825Z +-- @opIds: 13857 + +-- --- BEGIN op 13857 ( update custom_format "German Bluray Tier 03" ) +UPDATE custom_format_conditions +SET arr_type = 'all' +WHERE custom_format_name = 'German Bluray Tier 03' + AND name = 'Bluray' + AND type = 'source' + AND arr_type = 'radarr' + AND negate = 0 + AND required = 1; +-- --- END op 13857