Hello guys, why I can't see those tables in my con...
# off-topic
b
Hello guys, why I can't see those tables in my console?
s
You can, but you need to switch the schema to auth at the top of the tables list. The SQL console in Supabase dashboard also allows access to them with queries.
Just as a heads-up - if you need help with something, it's better to post in the #843999948717555735 channel rather than general
b
I thought this is not that technical so I posted it here. But I will remember your advice.
Do you know why it is hidden by default now?
s
If you want to view them in the dashboard, you have to tell it which schema to view (
auth
). Most work that people do is in the
public
schema, so it selects that schema by default. Large projects with multiple schemas would be a nightmare to manage if every single table from every single schema was listed with no way of filtering. It'd also increase the loading time because it would need to fetch data from every schema, even ones which you might never look at.
b
Thanks a lot for your explanation.
n
Thread was archived by @bluetoothfx. Anyone can send a message to unarchive it.