wetalk/supabase/migrations/004_external_author.sql
ordinarthur 0f9679ca2f
Some checks failed
Build & Deploy / build-and-deploy (push) Has been cancelled
add good author
2026-04-13 11:45:06 +02:00

5 lines
234 B
SQL

-- Store original content creator info for external podcasts (YouTube channel, Spotify artist, etc.)
ALTER TABLE public.podcasts
ADD COLUMN IF NOT EXISTS external_author text,
ADD COLUMN IF NOT EXISTS external_author_avatar text;