Add Spotify portfolio URL to artist profiles
cgen-d4876cd0aa9d4f81b5f6f8dae20e87b1
This commit is contained in:
parent
b8134252ce
commit
c788675a3c
1 changed files with 9 additions and 0 deletions
9
supabase/migrations/20250215_add_spotify_portfolio.sql
Normal file
9
supabase/migrations/20250215_add_spotify_portfolio.sql
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
-- Add Spotify portfolio URL field to ethos_artist_profiles
|
||||
-- This field allows artists to link their Spotify profile for social proof and portfolio display
|
||||
-- V1: Simple URL field. V2: Will integrate Spotify API for metadata/embed
|
||||
|
||||
ALTER TABLE public.ethos_artist_profiles
|
||||
ADD COLUMN IF NOT EXISTS spotify_profile_url text;
|
||||
|
||||
-- Add comment for documentation
|
||||
COMMENT ON COLUMN public.ethos_artist_profiles.spotify_profile_url IS 'Spotify artist profile URL for portfolio/social proof. V1: URL link only. V2: Will support web player embed.';
|
||||
Loading…
Reference in a new issue