Add Spotify portfolio URL to aethex_creators
cgen-30736dda5db542099e4ec99d38e75ddd
This commit is contained in:
parent
c989c54b9e
commit
1075909e70
1 changed files with 10 additions and 0 deletions
10
supabase/migrations/20250215_add_spotify_to_creators.sql
Normal file
10
supabase/migrations/20250215_add_spotify_to_creators.sql
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
-- Add Spotify portfolio URL to aethex_creators
|
||||
-- This field allows ALL creators (regardless of type) to link their Spotify profile
|
||||
-- for social proof and portfolio display on their public profiles (/passport/:username, /creators/:username)
|
||||
-- V1: Simple URL field. V2: Will integrate Spotify API for metadata/embed
|
||||
|
||||
ALTER TABLE public.aethex_creators
|
||||
ADD COLUMN IF NOT EXISTS spotify_profile_url text;
|
||||
|
||||
-- Add comment for documentation
|
||||
COMMENT ON COLUMN public.aethex_creators.spotify_profile_url IS 'Spotify artist profile URL for universal portfolio/social proof. Supports all creator types. V1: URL link only. V2: Will support web player embed.';
|
||||
Loading…
Reference in a new issue