Postgresql – How do I make a custom user model the auth_user database?
I added this line in my settings.py file in order to make a custom User model the auth_user database: AUTH_USER_MODEL = 'main.User' (main is the name of one my apps and it contains all of the models). But I later…