Change user email in the Supabase Database/UI
Is there a way to change a user's email wihen they're using a Google Auth Provider without having to deal with Javascript?
I want to add their email via Email Auth if possible, but only see Javascript options that allows them to do it themselves. However, some can't because they legitamely lost access to their email.
2 Replies
You could use the SQL editor. But it is in both the identities table and the user table in auth. I assume that would work, but have not tried it.
When a user signs in with Google, their email is managed by the OAuth provider, so you cannot change it directly through Supabase.
If the user lost access, need to create new account, and migrate user data from original database manually.
I hope this helps you 🙂