From 27b7f45933c8ad4d003e701064782a980e0a5524 Mon Sep 17 00:00:00 2001 From: Seraphys Date: Mon, 1 Jun 2026 18:45:15 -0500 Subject: [PATCH] Move RandomBytes to 2160p Quality Tier 4 --- ...ve-randombytes-to-2160p-quality-tier-4.sql | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 ops/168.move-randombytes-to-2160p-quality-tier-4.sql diff --git a/ops/168.move-randombytes-to-2160p-quality-tier-4.sql b/ops/168.move-randombytes-to-2160p-quality-tier-4.sql new file mode 100644 index 00000000..d2bc7ba4 --- /dev/null +++ b/ops/168.move-randombytes-to-2160p-quality-tier-4.sql @@ -0,0 +1,22 @@ +-- @operation: export +-- @entity: batch +-- @name: Move RandomBytes to 2160p Quality Tier 4 +-- @exportedAt: 2026-06-01T23:45:14.158Z +-- @opIds: 10854, 10855 + +-- --- BEGIN op 10854 ( update custom_format "2160p Quality Tier 5" ) +DELETE FROM custom_format_conditions + WHERE custom_format_name = '2160p Quality Tier 5' + AND name = 'RandomBytes' + AND type = 'release_group' + AND arr_type = 'all' + AND negate = 0 + AND required = 0; +-- --- END op 10854 + +-- --- BEGIN op 10855 ( update custom_format "2160p Quality Tier 4" ) +INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required) +VALUES ('2160p Quality Tier 4', 'RandomBytes', 'release_group', 'all', 0, 0); + +INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('2160p Quality Tier 4', 'RandomBytes', 'RandomBytes'); +-- --- END op 10855