From b2252cad7629b78e08d31944da08fea5055cd697 Mon Sep 17 00:00:00 2001 From: Seraphys Date: Tue, 30 Jun 2026 03:12:58 +0000 Subject: [PATCH] Change playWEB Regex to account for Duplicate Drift --- ...ange-playweb-regex-to-account-for-duplicate-drift.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ops/42.change-playweb-regex-to-account-for-duplicate-drift.sql diff --git a/ops/42.change-playweb-regex-to-account-for-duplicate-drift.sql b/ops/42.change-playweb-regex-to-account-for-duplicate-drift.sql new file mode 100644 index 0000000..3c11066 --- /dev/null +++ b/ops/42.change-playweb-regex-to-account-for-duplicate-drift.sql @@ -0,0 +1,9 @@ +-- @operation: export +-- @entity: batch +-- @name: Change playWEB Regex to account for Duplicate Drift +-- @exportedAt: 2026-06-30T03:12:57.545Z +-- @opIds: 11458 + +-- --- BEGIN op 11458 ( update regular_expression "playWEB" ) +update "regular_expressions" set "pattern" = '\b(playWEB)\b' where "name" = 'playWEB' and "pattern" = '^(playWEB)$'; +-- --- END op 11458