From c1f2709349a9b05ae8c922c8fd31cf727ff7cff0 Mon Sep 17 00:00:00 2001 From: Seraphys Date: Wed, 1 Jul 2026 19:10:26 +0000 Subject: [PATCH] Add HDSCR to CAM Regex --- ops/194.add-hdscr-to-cam-regex.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ops/194.add-hdscr-to-cam-regex.sql diff --git a/ops/194.add-hdscr-to-cam-regex.sql b/ops/194.add-hdscr-to-cam-regex.sql new file mode 100644 index 00000000..b1444322 --- /dev/null +++ b/ops/194.add-hdscr-to-cam-regex.sql @@ -0,0 +1,9 @@ +-- @operation: export +-- @entity: batch +-- @name: Add HDSCR to CAM Regex +-- @exportedAt: 2026-07-01T19:10:25.207Z +-- @opIds: 11635 + +-- --- BEGIN op 11635 ( update regular_expression "CAM" ) +update "regular_expressions" set "pattern" = '(?<=\b[12]\d{3}\b).*(\b(CAM|HDSCR|HDTS|SCREENER|TELESYNC)\b)' where "name" = 'CAM' and "pattern" = '(?<=\b[12]\d{3}\b).*(\b(CAM|HDTS|SCREENER|TELESYNC)\b)'; +-- --- END op 11635