You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now, we will create a trigger `on_auth_user_created` that utilized the function above. It triggers when a new row is insert into `auth.users` table (when new User Signup).
22
+
23
+
```sql
24
+
createtriggeron_auth_user_created
25
+
after insert onauth.users
26
+
for each row execute procedure public.handle_new_user();
0 commit comments