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)
);
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.
Was this page helpful?