Files
dictionarry/ops/243.add-perfectionhd-to-1080-720p-quality-tier-5.sql

43 lines
2.3 KiB
SQL

-- @operation: export
-- @entity: batch
-- @name: Add PerfectionHD to 1080/720p Quality Tier 5
-- @exportedAt: 2026-08-17T20:34:51.232Z
-- @opIds: 13259, 13260, 13261, 13262, 13263
-- --- BEGIN op 13259 ( create regular_expression "PerfectionHD" )
insert into "regular_expressions" ("name", "pattern", "description", "regex101_id") values ('PerfectionHD', '(?<=^|[\s.-])ToK\b', NULL, NULL);
insert into "tags" ("name") values ('Bluray') on conflict ("name") do nothing;
INSERT INTO regular_expression_tags (regular_expression_name, tag_name) VALUES ('PerfectionHD', 'Bluray');
insert into "tags" ("name") values ('Release Group') on conflict ("name") do nothing;
INSERT INTO regular_expression_tags (regular_expression_name, tag_name) VALUES ('PerfectionHD', 'Release Group');
-- --- END op 13259
-- --- BEGIN op 13260 ( update regular_expression "PerfectionHD" )
update "regular_expressions" set "pattern" = '(?<=^|[\s.-])PerfectionHD\b' where "name" = 'PerfectionHD' and "pattern" = '(?<=^|[\s.-])ToK\b';
-- --- END op 13260
-- --- BEGIN op 13261 ( update custom_format "720p Quality Tier 5" )
INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required)
VALUES ('720p Quality Tier 5', 'PerfectionHD', 'release_group', 'all', 0, 0);
INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('720p Quality Tier 5', 'PerfectionHD', 'PerfectionHD');
-- --- END op 13261
-- --- BEGIN op 13262 ( update custom_format "1080p Quality Tier 5" )
INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required)
VALUES ('1080p Quality Tier 5', 'PerfectionHD', 'release_group', 'all', 0, 0);
INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('1080p Quality Tier 5', 'PerfectionHD', 'PerfectionHD');
-- --- END op 13262
-- --- BEGIN op 13263 ( update custom_format "1080p Quality Tier 5 (Efficient)" )
INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required)
VALUES ('1080p Quality Tier 5 (Efficient)', 'PerfectionHD', 'release_group', 'all', 0, 0);
INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('1080p Quality Tier 5 (Efficient)', 'PerfectionHD', 'PerfectionHD');
-- --- END op 13263