Files
trash/ops/32.add-rlsgrp-madsky-to-web-tier-01.sql
T
2026-06-14 15:55:24 -05:00

21 lines
938 B
SQL

-- @operation: export
-- @entity: batch
-- @name: Add RlsGrp MADSKY to WEB Tier 01
-- @exportedAt: 2026-06-14T20:55:23.215Z
-- @opIds: 10979, 10980, 10983
-- --- BEGIN op 10979 ( create regular_expression "MADSKY" )
insert into "regular_expressions" ("name", "pattern", "description", "regex101_id") values ('MADSKY', '[.]heb\b', NULL, NULL);
-- --- END op 10979
-- --- BEGIN op 10980 ( update regular_expression "MADSKY" )
update "regular_expressions" set "pattern" = '^(MADSKY)$' where "name" = 'MADSKY' and "pattern" = '[.]heb\b';
-- --- END op 10980
-- --- BEGIN op 10983 ( update custom_format "WEB Tier 01" )
INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required)
VALUES ('WEB Tier 01', 'MADSKY', 'release_group', 'all', 0, 0);
INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('WEB Tier 01', 'MADSKY', 'MADSKY');
-- --- END op 10983