From 325c6cf525aa0d85af75f5551a78f9d60f0309fc Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Wed, 12 Nov 2025 05:41:21 +0000 Subject: [PATCH] completionId: cgen-381c869efb4d419bba612587c3fff4d2 cgen-381c869efb4d419bba612587c3fff4d2 --- server/index.ts | 3 +-- supabase/migrations/20250215_add_spotify_portfolio.sql | 9 --------- 2 files changed, 1 insertion(+), 11 deletions(-) delete mode 100644 supabase/migrations/20250215_add_spotify_portfolio.sql diff --git a/server/index.ts b/server/index.ts index 612c387e..20d2a3af 100644 --- a/server/index.ts +++ b/server/index.ts @@ -154,7 +154,7 @@ const handleDiscordInteractions = async ( return res.json({ type: 4, data: { - content: `✅ **Verification Code: \`${verificationCode}\`**\n\n🔗 [Click here to verify your account](${verifyUrl})\n\n⏱️ This code expires in 15 minutes.`, + content: `✅ **Verification Code: \`${verificationCode}\`**\n\n��� [Click here to verify your account](${verifyUrl})\n\n⏱️ This code expires in 15 minutes.`, flags: 0, }, }); @@ -4899,7 +4899,6 @@ export function createServer() { for_hire, bio, portfolio_url, - spotify_profile_url, sample_price_track, sample_price_sfx, sample_price_score, diff --git a/supabase/migrations/20250215_add_spotify_portfolio.sql b/supabase/migrations/20250215_add_spotify_portfolio.sql deleted file mode 100644 index 499d0e2b..00000000 --- a/supabase/migrations/20250215_add_spotify_portfolio.sql +++ /dev/null @@ -1,9 +0,0 @@ --- 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.';