From b6c6af061efc8cf10e0945116bc6f1a85c6c4926 Mon Sep 17 00:00:00 2001 From: Seraphys Date: Tue, 16 Jun 2026 17:20:56 -0500 Subject: [PATCH] Change BR-DISK Regex Naming --- ops/77.change-br-disk-regex-naming.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ops/77.change-br-disk-regex-naming.sql diff --git a/ops/77.change-br-disk-regex-naming.sql b/ops/77.change-br-disk-regex-naming.sql new file mode 100644 index 0000000..c07625c --- /dev/null +++ b/ops/77.change-br-disk-regex-naming.sql @@ -0,0 +1,13 @@ +-- @operation: export +-- @entity: batch +-- @name: Change BR-DISK Regex Naming +-- @exportedAt: 2026-06-16T22:20:54.340Z +-- @opIds: 11173, 11174 + +-- --- BEGIN op 11173 ( update regular_expression "BR-DISK (BTN)" ) +update "regular_expressions" set "name" = 'BR-DISK (BTN)' where "name" = 'BR-DISK (2)'; +-- --- END op 11173 + +-- --- BEGIN op 11174 ( update custom_format "BR-DISK (BTN)" ) +update "condition_patterns" set "regular_expression_name" = 'BR-DISK (BTN)' where "custom_format_name" = 'BR-DISK (BTN)' and "condition_name" = 'BR-DISK' and "regular_expression_name" in ('BR-DISK (2)', 'BR-DISK (BTN)'); +-- --- END op 11174