From af25f6b4744ae5856e71d40c7b3aaf7ed8ddd24a Mon Sep 17 00:00:00 2001 From: Seraphys Date: Mon, 16 Feb 2026 13:52:19 -0600 Subject: [PATCH] Unban PiRaTes --- ops/51.unban-pirates.sql | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 ops/51.unban-pirates.sql diff --git a/ops/51.unban-pirates.sql b/ops/51.unban-pirates.sql new file mode 100644 index 00000000..6acb77b0 --- /dev/null +++ b/ops/51.unban-pirates.sql @@ -0,0 +1,25 @@ +-- @operation: export +-- @entity: batch +-- @name: Unban PiRaTes +-- @exportedAt: 2026-02-16T19:52:18.238Z +-- @opIds: 100, 101 + +-- --- BEGIN op 100 ( update custom_format "Banned Groups" ) +DELETE FROM custom_format_conditions + WHERE custom_format_name = 'Banned Groups' + AND name = 'PiRaTeS' + AND type = 'release_group' + AND arr_type = 'all' + AND negate = 0 + AND required = 0; +-- --- END op 100 + +-- --- BEGIN op 101 ( update custom_format "Banned Groups (Efficient)" ) +DELETE FROM custom_format_conditions + WHERE custom_format_name = 'Banned Groups (Efficient)' + AND name = 'PiRaTeS' + AND type = 'release_group' + AND arr_type = 'all' + AND negate = 0 + AND required = 0; +-- --- END op 101