Add park detail page

This commit is contained in:
gpt-engineer-app[bot]
2025-09-20 01:01:46 +00:00
parent 3a4b52ec18
commit c25a73bbf8

View File

@@ -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();