From 6cf87bbc030e234a091ecf8320dfa856a08acc71 Mon Sep 17 00:00:00 2001 From: Seraphys Date: Wed, 11 Mar 2026 16:56:52 -0500 Subject: [PATCH] Update ASL Regex --- ops/90.update-asl-regex.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ops/90.update-asl-regex.sql diff --git a/ops/90.update-asl-regex.sql b/ops/90.update-asl-regex.sql new file mode 100644 index 00000000..0d30cc01 --- /dev/null +++ b/ops/90.update-asl-regex.sql @@ -0,0 +1,9 @@ +-- @operation: export +-- @entity: batch +-- @name: Update ASL Regex +-- @exportedAt: 2026-03-11T21:56:50.998Z +-- @opIds: 2976 + +-- --- BEGIN op 2976 ( update regular_expression "ASL" ) +update "regular_expressions" set "pattern" = '\b(ASL|BSL|Audio[ ._-]Description)\b' where "name" = 'ASL' and "pattern" = '\b(ASL)\b'; +-- --- END op 2976