So I am working on a full-stack hobby project and am at the point where I need to start creating some models for my postgresql DB with Django.
Confused on if I should be using multiple databases in Postgres or just tables.
For example, lets say I have a booking system for a barbershop. Is it best to store user data, barbershop data and booking info all in the same db just in different tables?
Or is it better to store user data in one db, then the booking data in another?