From b1a1197d3ea8e98a6654964b91eb1ef501cfc7ea Mon Sep 17 00:00:00 2001 From: Seraphys Date: Fri, 28 Aug 2026 22:08:30 +0000 Subject: [PATCH] Season Pack Requirement OFF --- ops/135.season-pack-requirement-off.sql | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 ops/135.season-pack-requirement-off.sql diff --git a/ops/135.season-pack-requirement-off.sql b/ops/135.season-pack-requirement-off.sql new file mode 100644 index 0000000..4217d99 --- /dev/null +++ b/ops/135.season-pack-requirement-off.sql @@ -0,0 +1,16 @@ +-- @operation: export +-- @entity: batch +-- @name: Season Pack Requirement OFF +-- @exportedAt: 2026-08-28T22:08:29.299Z +-- @opIds: 14143 + +-- --- BEGIN op 14143 ( update custom_format "Season Pack" ) +UPDATE custom_format_conditions +SET required = 0 +WHERE custom_format_name = 'Season Pack' + AND name = 'Season Pack' + AND type = 'release_type' + AND arr_type = 'sonarr' + AND negate = 0 + AND required = 1; +-- --- END op 14143