From a2b33d7506eb59589d0d94bf4b60a9700874b16d Mon Sep 17 00:00:00 2001 From: Seraphys Date: Tue, 7 Jul 2026 02:17:37 +0000 Subject: [PATCH] Fix Theatrical Name --- ops/71.fix-theatrical-name.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ops/71.fix-theatrical-name.sql diff --git a/ops/71.fix-theatrical-name.sql b/ops/71.fix-theatrical-name.sql new file mode 100644 index 0000000..38aebe5 --- /dev/null +++ b/ops/71.fix-theatrical-name.sql @@ -0,0 +1,9 @@ +-- @operation: export +-- @entity: batch +-- @name: Fix Theatrical Name +-- @exportedAt: 2026-07-07T02:17:36.414Z +-- @opIds: 12317 + +-- --- BEGIN op 12317 ( update custom_format "Theatrical Cut" ) +update "custom_formats" set "name" = 'Theatrical Cut' where "name" = 'Theatrical'; +-- --- END op 12317