From 9af55a603616fe3c782122b1ec51842af8929bdb Mon Sep 17 00:00:00 2001 From: Seraphys Date: Wed, 11 Feb 2026 12:17:34 -0600 Subject: [PATCH] Ban All WEBRips on non 265 Profiles Sonarr Side --- ...l-webrips-on-non-265-profiles-sonarr-side.sql | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 ops/43.ban-all-webrips-on-non-265-profiles-sonarr-side.sql diff --git a/ops/43.ban-all-webrips-on-non-265-profiles-sonarr-side.sql b/ops/43.ban-all-webrips-on-non-265-profiles-sonarr-side.sql new file mode 100644 index 00000000..1d24642f --- /dev/null +++ b/ops/43.ban-all-webrips-on-non-265-profiles-sonarr-side.sql @@ -0,0 +1,16 @@ +-- @operation: export +-- @entity: batch +-- @name: Ban All WEBRips on non 265 Profiles Sonarr Side +-- @exportedAt: 2026-02-11T18:17:31.938Z +-- @opIds: 44 + +-- --- BEGIN op 44 ( update custom_format "Banned WEBRip" ) +UPDATE custom_format_conditions +SET arr_type = 'radarr' +WHERE custom_format_name = 'Banned WEBRip' + AND name = 'Release Groups' + AND type = 'release_group' + AND arr_type = 'all' + AND negate = 1 + AND required = 1; +-- --- END op 44