How to create a new row in public.users_data when a new user is added to auth.User
So i have the following table
All values are allowed to be nullable except for the primary key. First_login field sets the default value to true.
So what is the best way to create a trigger that inserts the the email from auth.Users to public.users_data
I already tried this method
but when i try to sign up via postman i get this response:
All values are allowed to be nullable except for the primary key. First_login field sets the default value to true.
So what is the best way to create a trigger that inserts the the email from auth.Users to public.users_data
I already tried this method
but when i try to sign up via postman i get this response: