From c43b6044669334cceaa0999506c549a29b5e1a43 Mon Sep 17 00:00:00 2001 From: Seraphys Date: Sat, 11 Apr 2026 19:19:50 -0500 Subject: [PATCH] Update Optional Streaming Services Tags --- ....update-optional-streaming-services-tags.sql | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 ops/18.update-optional-streaming-services-tags.sql diff --git a/ops/18.update-optional-streaming-services-tags.sql b/ops/18.update-optional-streaming-services-tags.sql new file mode 100644 index 0000000..7bb77e5 --- /dev/null +++ b/ops/18.update-optional-streaming-services-tags.sql @@ -0,0 +1,17 @@ +-- @operation: export +-- @entity: batch +-- @name: Update Optional Streaming Services Tags +-- @exportedAt: 2026-04-12T00:19:49.349Z +-- @opIds: 5097, 5098 + +-- --- BEGIN op 5097 ( update custom_format "HD Streaming Boost" ) +insert into "tags" ("name") values ('Optional Streaming Services') on conflict ("name") do nothing; + +INSERT INTO custom_format_tags (custom_format_name, tag_name) VALUES ('HD Streaming Boost', 'Optional Streaming Services'); +-- --- END op 5097 + +-- --- BEGIN op 5098 ( update custom_format "UHD Streaming Boost" ) +insert into "tags" ("name") values ('Optional Streaming Services') on conflict ("name") do nothing; + +INSERT INTO custom_format_tags (custom_format_name, tag_name) VALUES ('UHD Streaming Boost', 'Optional Streaming Services'); +-- --- END op 5098