From f255bc3014f29c0c331b9a9f1c329f87c2c3a060 Mon Sep 17 00:00:00 2001 From: Seraphys Date: Tue, 30 Jun 2026 21:53:43 +0000 Subject: [PATCH] Add SCREENER to CAM Regex --- ops/192.add-screener-to-cam-regex.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ops/192.add-screener-to-cam-regex.sql diff --git a/ops/192.add-screener-to-cam-regex.sql b/ops/192.add-screener-to-cam-regex.sql new file mode 100644 index 00000000..b5e3b722 --- /dev/null +++ b/ops/192.add-screener-to-cam-regex.sql @@ -0,0 +1,9 @@ +-- @operation: export +-- @entity: batch +-- @name: Add SCREENER to CAM Regex +-- @exportedAt: 2026-06-30T21:53:42.205Z +-- @opIds: 11622 + +-- --- BEGIN op 11622 ( update regular_expression "CAM" ) +update "regular_expressions" set "pattern" = '(?<=\b[12]\d{3}\b).*(\b(CAM|HDTS|SCREENER|TELESYNC)\b)' where "name" = 'CAM' and "pattern" = '(?<=\b[12]\d{3}\b).*(\b(CAM|HDTS|TELESYNC)\b)'; +-- --- END op 11622