Move R&H to LQ Release Title

This commit is contained in:
Seraphys
2026-06-14 15:51:22 -05:00
parent fb0c4fcf03
commit ba4188922d
+26
View File
@@ -0,0 +1,26 @@
-- @operation: export
-- @entity: batch
-- @name: Move R&H to LQ Release Title
-- @exportedAt: 2026-06-14T20:51:20.401Z
-- @opIds: 10963, 10968, 10969
-- --- BEGIN op 10963 ( update regular_expression "R&H" )
update "regular_expressions" set "pattern" = '\b(R&H)\b' where "name" = 'R&H' and "pattern" = '^(R&H)$';
-- --- END op 10963
-- --- BEGIN op 10968 ( update custom_format "LQ" )
DELETE FROM custom_format_conditions
WHERE custom_format_name = 'LQ'
AND name = 'R&H'
AND type = 'release_group'
AND arr_type = 'all'
AND negate = 0
AND required = 0;
-- --- END op 10968
-- --- BEGIN op 10969 ( update custom_format "LQ (Release Title)" )
INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required)
VALUES ('LQ (Release Title)', 'R&H', 'release_title', 'all', 0, 0);
INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('LQ (Release Title)', 'R&H', 'R&H');
-- --- END op 10969