© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
SupabaseS
Supabase•3y ago•
4 replies
KiMoZ

how to add Display Name on the User Table under Auth

i cant find on the documentation how to add in the Display Name column

also am tring to fill a user table i created with some info below code but its not being filled when i sign up the user :
const onSignUpPress = async () => {
setLoading(true);
const { error } = await supabase.auth.signUp({
email: email,
password: password,
});

console.log(error);
if (error) Alert.alert(error.message);
setLoading(false);
const { data } = await supabase
.from("users")
.update({ name: Name, role: role, organization: organization })
.eq("email", email)
.select();
};
image.png
Supabase banner
SupabaseJoin
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.
45,816Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Add Properties to Auth.User
SupabaseSSupabase / help-and-questions
4y ago
How to set display name while signing up user
SupabaseSSupabase / help-and-questions
3y ago
Automatically add user email to a table on user signup.
SupabaseSSupabase / help-and-questions
4y ago
Add phone auth to existing email auth user
SupabaseSSupabase / help-and-questions
4y ago