© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
SupabaseS
Supabase•3y ago•
2 replies
fuzzy_discussion911

View Auth Table

I used the "User Management Starter" in the SQL editor and see that is references an auth table quite a few times
create table profiles (
  id uuid references auth.users on delete cascade not null primary key,
  updated_at timestamp with time zone,
  username text unique,
  full_name text,
  avatar_url text,
  website text,

  constraint username_length check (char_length(username) >= 3)
);
create table profiles (
  id uuid references auth.users on delete cascade not null primary key,
  updated_at timestamp with time zone,
  username text unique,
  full_name text,
  avatar_url text,
  website text,

  constraint username_length check (char_length(username) >= 3)
);
how do I view said table? When I navigate to the tables tab I only see the profiles table that I create, but I can't seem to find the auth table being references anywhere.
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

Fetch Emails from Auth table
SupabaseSSupabase / help-and-questions
3mo ago
Deleted the auth.users table
SupabaseSSupabase / help-and-questions
4y ago
Auth / Tables error
SupabaseSSupabase / help-and-questions
5mo ago
Can't view storage images in table
SupabaseSSupabase / help-and-questions
14mo ago