Files
thrilltrack-explorer/supabase/migrations/20250920010123_54333413-b8e8-4995-ae5f-dd2248860a61.sql
gpt-engineer-app[bot] c25a73bbf8 Add park detail page
2025-09-20 01:01:46 +00:00

5 lines
199 B
SQL

-- Create trigger to automatically create profile when user signs up
CREATE TRIGGER on_auth_user_created
AFTER INSERT ON auth.users
FOR EACH ROW
EXECUTE FUNCTION public.handle_new_user();