I want to develop an app that uses both single and multi tenant architecture. The single tenant part would be used to store user accounts (to manage authentication, subscriptions, track analytics, etc.) for all users, but each client's data would be stored in a separate database. In other words, when a user logs in, they would be authenticated agains a single user database, but then logic on the server would route subsequent requests for that user to a separate database for that user.
Is it possible to do that with Supabase?