From c0ff91956d0384dc2991531239d58e6d4c8c42e4 Mon Sep 17 00:00:00 2001 From: Seraphys Date: Tue, 30 Jun 2026 03:05:39 +0000 Subject: [PATCH] Remove Guyzo from Sonarr side Upscaled CF --- ...remove-guyzo-from-sonarr-side-upscaled-cf.sql | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 ops/87.remove-guyzo-from-sonarr-side-upscaled-cf.sql diff --git a/ops/87.remove-guyzo-from-sonarr-side-upscaled-cf.sql b/ops/87.remove-guyzo-from-sonarr-side-upscaled-cf.sql new file mode 100644 index 0000000..9f3b46d --- /dev/null +++ b/ops/87.remove-guyzo-from-sonarr-side-upscaled-cf.sql @@ -0,0 +1,16 @@ +-- @operation: export +-- @entity: batch +-- @name: Remove Guyzo from Sonarr side Upscaled CF +-- @exportedAt: 2026-06-30T03:05:38.226Z +-- @opIds: 11455 + +-- --- BEGIN op 11455 ( update custom_format "Upscaled" ) +UPDATE custom_format_conditions +SET arr_type = 'radarr' +WHERE custom_format_name = 'Upscaled' + AND name = 'GuyZo' + AND type = 'release_title' + AND arr_type = 'all' + AND negate = 0 + AND required = 0; +-- --- END op 11455