From f08bd18d5e72ae8a4eab88d015e1b586d2dfcdd9 Mon Sep 17 00:00:00 2001 From: Seraphys Date: Mon, 13 Apr 2026 13:32:43 -0500 Subject: [PATCH] Update French Streaming Services Tags --- ....update-french-streaming-services-tags.sql | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 ops/6.update-french-streaming-services-tags.sql diff --git a/ops/6.update-french-streaming-services-tags.sql b/ops/6.update-french-streaming-services-tags.sql new file mode 100644 index 0000000..01e7cee --- /dev/null +++ b/ops/6.update-french-streaming-services-tags.sql @@ -0,0 +1,23 @@ +-- @operation: export +-- @entity: batch +-- @name: Update French Streaming Services Tags +-- @exportedAt: 2026-04-13T18:32:42.830Z +-- @opIds: 5881, 5882, 5883 + +-- --- BEGIN op 5881 ( update custom_format "AUViO" ) +insert into "tags" ("name") values ('French Streaming Services') on conflict ("name") do nothing; + +INSERT INTO custom_format_tags (custom_format_name, tag_name) VALUES ('AUViO', 'French Streaming Services'); +-- --- END op 5881 + +-- --- BEGIN op 5882 ( update custom_format "MyCANAL" ) +insert into "tags" ("name") values ('French Streaming Services') on conflict ("name") do nothing; + +INSERT INTO custom_format_tags (custom_format_name, tag_name) VALUES ('MyCANAL', 'French Streaming Services'); +-- --- END op 5882 + +-- --- BEGIN op 5883 ( update custom_format "SALTO" ) +insert into "tags" ("name") values ('French Streaming Services') on conflict ("name") do nothing; + +INSERT INTO custom_format_tags (custom_format_name, tag_name) VALUES ('SALTO', 'French Streaming Services'); +-- --- END op 5883