Can we add extra field to user table?

In my MongoDB + PayloadCMS setup, Better Auth records ID, name, email, and email verification state. How can I add phone number to the saved fields?
Solution
const { data, error } = await authClient.signUp.email({
email,
password,
name,
phoneNumber,
})
Was this page helpful?