From d8b460b7756b63641aece038d3211033104419bb Mon Sep 17 00:00:00 2001 From: Seraphys Date: Sun, 1 Mar 2026 22:25:17 -0600 Subject: [PATCH] Add Not Remux to DVD Tiers --- ops/69.add-not-remux-to-dvd-tiers.sql | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ops/69.add-not-remux-to-dvd-tiers.sql diff --git a/ops/69.add-not-remux-to-dvd-tiers.sql b/ops/69.add-not-remux-to-dvd-tiers.sql new file mode 100644 index 00000000..f571e573 --- /dev/null +++ b/ops/69.add-not-remux-to-dvd-tiers.sql @@ -0,0 +1,19 @@ +-- @operation: export +-- @entity: batch +-- @name: Add Not Remux to DVD Tiers +-- @exportedAt: 2026-03-02T04:25:16.684Z +-- @opIds: 1467, 1468 + +-- --- BEGIN op 1467 ( update custom_format "DVD Quality Tier 1" ) +INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required) +VALUES ('DVD Quality Tier 1', 'Not Remux', 'release_title', 'all', 1, 1); + +INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('DVD Quality Tier 1', 'Not Remux', 'Remux'); +-- --- END op 1467 + +-- --- BEGIN op 1468 ( update custom_format "DVD Quality Tier 2" ) +INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required) +VALUES ('DVD Quality Tier 2', 'Not Remux', 'release_title', 'all', 1, 1); + +INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('DVD Quality Tier 2', 'Not Remux', 'Remux'); +-- --- END op 1468