connecting custom (extended) users table with better-auth users
right now i have a table
users
(foreign key to auth.users
). trying to move to better-auth, so i want to have some fk from users
to bauth.users
1 Reply
or like how else could i link users together? would the user id be a dbgenerated uuid? have a trigger that creates the
users
object when inserting to bauth.users
?