Files
parakasa/supabase_migration_youtube.sql
2026-01-25 01:46:12 +03:00

10 lines
377 B
SQL

-- Rename social_facebook to social_youtube if it exists
UPDATE site_contents
SET key = 'social_youtube'
WHERE key = 'social_facebook';
-- If social_facebook didn't exist, insert social_youtube (handling the case where it might already exist)
INSERT INTO site_contents (key, value, type, section)
VALUES ('social_youtube', '', 'text', 'contact')
ON CONFLICT (key) DO NOTHING;