Files
trash/ops/70.move-r-h-to-lq-release-title.sql
T
2026-06-14 15:51:22 -05:00

27 lines
985 B
SQL

-- @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