chore: add tv to sitemap
This commit is contained in:
parent
67de0669db
commit
a5f5878006
1 changed files with 9 additions and 0 deletions
|
@ -39,6 +39,15 @@ WITH sitemap_data AS (
|
||||||
g.name AS title,
|
g.name AS title,
|
||||||
CONCAT('https://coryd.dev', g.url) AS url
|
CONCAT('https://coryd.dev', g.url) AS url
|
||||||
FROM optimized_genres g
|
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
|
SELECT
|
||||||
|
|
Reference in a new issue