chore: add tv to sitemap

This commit is contained in:
Cory Dransfeldt 2024-10-13 16:20:33 -07:00
parent 67de0669db
commit a5f5878006
No known key found for this signature in database

View file

@ -39,6 +39,15 @@ WITH sitemap_data AS (
g.name AS title,
CONCAT('https://coryd.dev', g.url) AS url
FROM optimized_genres g
UNION ALL
SELECT
s.last_watched_at AS content_date,
s.title,
CONCAT('https://coryd.dev', s.url) AS url
FROM optimized_shows s
WHERE s.last_watched_at IS NOT NULL
)
SELECT