From 4bf3f56c347d7c3d580d603c8cdbde6556263596 Mon Sep 17 00:00:00 2001 From: Seraphys Date: Sun, 17 May 2026 18:09:07 -0500 Subject: [PATCH] Fix EniaHD --- ops/56.fix-eniahd.sql | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ops/56.fix-eniahd.sql diff --git a/ops/56.fix-eniahd.sql b/ops/56.fix-eniahd.sql new file mode 100644 index 0000000..301d829 --- /dev/null +++ b/ops/56.fix-eniahd.sql @@ -0,0 +1,20 @@ +-- @operation: export +-- @entity: batch +-- @name: Fix EniaHD +-- @exportedAt: 2026-05-17T23:09:05.251Z +-- @opIds: 9205 + +-- --- BEGIN op 9205 ( update custom_format "Bad Dual Groups" ) +UPDATE custom_format_conditions +SET type = 'release_group' +WHERE custom_format_name = 'Bad Dual Groups' + AND name = 'EniaHD' + AND type = 'release_title' + AND arr_type = 'all' + AND negate = 0 + AND required = 0; + +DELETE FROM condition_patterns WHERE custom_format_name = 'Bad Dual Groups' AND condition_name = 'EniaHD' AND regular_expression_name = 'EniaHD'; + +INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('Bad Dual Groups', 'EniaHD', 'EniaHD'); +-- --- END op 9205