Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions supabase/migrations/20260507000000_drop_youtube_tokens.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
-- YouTube auth has fully migrated to Composio (token storage now lives in
-- Composio's connected-account API). The youtube_tokens table is no longer
-- read or written by api/chat. Dropping it; CASCADE cleans up the trigger,
-- indexes, RLS policy, and FK from migrations:
-- 20250601000001_youtube_tokens_consolidated.sql
-- 20250702204149_rename_youtube_tokens_account_id_to_artist_account_id.sql
-- 20250703000000_youtube_tokens_row_level_security.sql

DROP TABLE IF EXISTS public.youtube_tokens CASCADE;