5 lines
234 B
SQL
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;
|