From 132c1d26849a8d003a78cf15f1b37cf02227d996 Mon Sep 17 00:00:00 2001 From: Seraphys Date: Mon, 16 Feb 2026 14:27:52 -0600 Subject: [PATCH] Tweak German DL Regex to Match Both DL and ML --- ops/53.tweak-german-dl-regex-to-match-both-dl-and-ml.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ops/53.tweak-german-dl-regex-to-match-both-dl-and-ml.sql diff --git a/ops/53.tweak-german-dl-regex-to-match-both-dl-and-ml.sql b/ops/53.tweak-german-dl-regex-to-match-both-dl-and-ml.sql new file mode 100644 index 00000000..0927760f --- /dev/null +++ b/ops/53.tweak-german-dl-regex-to-match-both-dl-and-ml.sql @@ -0,0 +1,9 @@ +-- @operation: export +-- @entity: batch +-- @name: Tweak German DL Regex to Match Both DL and ML +-- @exportedAt: 2026-02-16T20:27:48.857Z +-- @opIds: 132 + +-- --- BEGIN op 132 ( update regular_expression "German DL" ) +update "regular_expressions" set "pattern" = '\b(GERMAN[ ._-][DM]L)\b' where "name" = 'German DL' and "pattern" = '\b(GERMAN[ ._-]DL)\b'; +-- --- END op 132