From 96c87bae6d936c8eeda503b029bf6c6a0f261324 Mon Sep 17 00:00:00 2001 From: Seraphys Date: Tue, 30 Jun 2026 03:12:52 +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/62.change-playweb-regex-to-account-for-duplicate-drift.sql diff --git a/ops/62.change-playweb-regex-to-account-for-duplicate-drift.sql b/ops/62.change-playweb-regex-to-account-for-duplicate-drift.sql new file mode 100644 index 0000000..ff57a6c --- /dev/null +++ b/ops/62.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:50.999Z +-- @opIds: 11457 + +-- --- BEGIN op 11457 ( update regular_expression "playWEB" ) +update "regular_expressions" set "pattern" = '\b(playWEB)\b' where "name" = 'playWEB' and "pattern" = '^(playWEB)$'; +-- --- END op 11457