From 811b4b35ec2e1154adfa9bc662b55b076ba56887 Mon Sep 17 00:00:00 2001 From: Seraphys Date: Mon, 9 Feb 2026 19:47:15 -0600 Subject: [PATCH] Change Not Original or English Conditions --- ...nge-not-original-or-english-conditions.sql | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 ops/40.change-not-original-or-english-conditions.sql diff --git a/ops/40.change-not-original-or-english-conditions.sql b/ops/40.change-not-original-or-english-conditions.sql new file mode 100644 index 00000000..3b611e68 --- /dev/null +++ b/ops/40.change-not-original-or-english-conditions.sql @@ -0,0 +1,27 @@ +-- @operation: export +-- @entity: batch +-- @name: Change Not Original or English Conditions +-- @exportedAt: 2026-02-10T01:47:14.030Z +-- @opIds: 1510, 1511 + +-- --- BEGIN op 1510 ( update custom_format "Not Original or English" ) +UPDATE custom_format_conditions +SET required = 1 +WHERE custom_format_name = 'Not Original or English' + AND name = 'English' + AND type = 'language' + AND arr_type = 'all' + AND negate = 1 + AND required = 0; +-- --- END op 1510 + +-- --- BEGIN op 1511 ( update custom_format "Not Original or English" ) +UPDATE custom_format_conditions +SET required = 1 +WHERE custom_format_name = 'Not Original or English' + AND name = 'Original' + AND type = 'language' + AND arr_type = 'all' + AND negate = 1 + AND required = 0; +-- --- END op 1511