From 9877a31979accb5bc7585f7b860130f8439954eb Mon Sep 17 00:00:00 2001 From: Seraphys Date: Sun, 17 May 2026 17:48:42 -0500 Subject: [PATCH] Update Release Type (Optional) Tags --- ops/54.update-release-type-optional-tags.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ops/54.update-release-type-optional-tags.sql diff --git a/ops/54.update-release-type-optional-tags.sql b/ops/54.update-release-type-optional-tags.sql new file mode 100644 index 0000000..e4f40ca --- /dev/null +++ b/ops/54.update-release-type-optional-tags.sql @@ -0,0 +1,13 @@ +-- @operation: export +-- @entity: batch +-- @name: Update Release Type (Optional) Tags +-- @exportedAt: 2026-05-17T22:48:41.221Z +-- @opIds: 9195 + +-- --- BEGIN op 9195 ( update custom_format "Single Episode" ) +DELETE FROM custom_format_tags WHERE custom_format_name = 'Single Episode' AND tag_name = 'Miscellaneous'; + +insert into "tags" ("name") values ('Release Type (Optional)') on conflict ("name") do nothing; + +INSERT INTO custom_format_tags (custom_format_name, tag_name) VALUES ('Single Episode', 'Release Type (Optional)'); +-- --- END op 9195