38980-vm/app-9w9pd00g5j41/supabase/migrations/00085_unblock_admin_linking.sql
2026-03-04 18:25:09 +00:00

7 lines
263 B
SQL

-- Allow the admin user to link their Clerk ID to the pre-created profile
CREATE POLICY "Unblock muhammet linking" ON profiles
FOR UPDATE
TO public
USING (email = 'cappadociaturkeytour@gmail.com' AND clerk_user_id IS NULL)
WITH CHECK (clerk_user_id IS NOT NULL);