diff --git a/supabase/migrations/20250920010123_54333413-b8e8-4995-ae5f-dd2248860a61.sql b/supabase/migrations/20250920010123_54333413-b8e8-4995-ae5f-dd2248860a61.sql new file mode 100644 index 00000000..a2f192a3 --- /dev/null +++ b/supabase/migrations/20250920010123_54333413-b8e8-4995-ae5f-dd2248860a61.sql @@ -0,0 +1,5 @@ +-- 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(); \ No newline at end of file