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