From a44d02d24879dce12c68019beac08c7758753c47 Mon Sep 17 00:00:00 2001 From: Seraphys Date: Wed, 11 Feb 2026 12:40:35 -0600 Subject: [PATCH] Add 2160p Negation to SDTV CFs --- ops/45.add-2160p-negation-to-sdtv-cfs.sql | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ops/45.add-2160p-negation-to-sdtv-cfs.sql diff --git a/ops/45.add-2160p-negation-to-sdtv-cfs.sql b/ops/45.add-2160p-negation-to-sdtv-cfs.sql new file mode 100644 index 00000000..fc0fe024 --- /dev/null +++ b/ops/45.add-2160p-negation-to-sdtv-cfs.sql @@ -0,0 +1,19 @@ +-- @operation: export +-- @entity: batch +-- @name: Add 2160p Negation to SDTV CFs +-- @exportedAt: 2026-02-11T18:40:33.734Z +-- @opIds: 54, 55 + +-- --- BEGIN op 54 ( update custom_format "SDTV" ) +INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required) +VALUES ('SDTV', 'Not 2160p', 'resolution', 'all', 1, 1); + +INSERT INTO condition_resolutions (custom_format_name, condition_name, resolution) VALUES ('SDTV', 'Not 2160p', '2160p'); +-- --- END op 54 + +-- --- BEGIN op 55 ( update custom_format "SDTV Tier 1" ) +INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required) +VALUES ('SDTV Tier 1', 'Not 2160p', 'resolution', 'all', 1, 1); + +INSERT INTO condition_resolutions (custom_format_name, condition_name, resolution) VALUES ('SDTV Tier 1', 'Not 2160p', '2160p'); +-- --- END op 55