Hello, I need help with a persistent error when a new user signs up.

Every time I call supabase.auth.signUp(), Supabase returns this:

Unexpected error: PostgrestException(message:
{"code":"PGRST205","details":null,"hint":null,
"message":"Could not find the table 'public.auth.users'
in the schema cache"}, code:404)

Notes:
  • I am not querying auth.users anywhere.
  • I only use supabase.auth.signUp().
  • SQL queries work fine.
  • Existing users can log in normally.
  • Data API toggle reset was tried (disable → save → enable).
  • Exposed schemas re-added: public, storage, realtime, graphql_public, vault.
  • Extra search path set to: public, extensions.
It feels like PostgREST schema cache is corrupted or not exposing the internal auth schema.

Can someone help refresh or rebuild the cache for this project, or advise how to resolve this error?

Thank you.
Was this page helpful?