I’m using Supabase to authenticate users, but I saw it’s common practice to store custom data like name, profile info etc. in a separate table.
After researching a little more I saw someone recommending having a custom Users table that mirrors some data from the default auth.users
I would create relations to my Users table, rather than to the default auth.user table.
Would that work fine with WeWeb?
Even if I create a Roles table that is not directly related to the auth.users table?