Re: Django - Heavy Databse Usage

2019-11-18 Thread Motaz Hejaze
Make a custom user model , using abstractbaseuser , abstract base manager , lets say the custom user model will be myuser , myuser will contain all the common data between all users like name and email for example , , extend the custom user model using one to one relation with a model for each user

Django - Heavy Databse Usage

2019-11-18 Thread Paul Onteri
Let's say you are building a SAAS application system in which every user will use the database heavily, for example, a hospital management system. Should you have separate databases for each user? And how do you implement this in Django? -- You received this message because you are subscribed