Update Release Type (Optional) Tags

This commit is contained in:
Seraphys
2026-05-17 17:48:42 -05:00
parent 72a93e4a7a
commit 9877a31979
@@ -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