Good evening,
I just tried the following
https://docs.djangoproject.com/en/1.4/topics/auth/
in order to add some custom fields to my users. I just looked in the
DB and admin panel, and these new fields were not added to the
auth_user table, nor the User Admin Panel. I created a new app that
contains the UserProfile Model that I want to add. I set the
AUTH_PROFILE_MODULE and so far no errors.
Do I need to include the new app itself in the INSTALLED_APPS section
or not? Are these new fields stored in the auth_users table or a new
table? [Will it therefore always do JOINS?] How can I edit them for
each user?
Thanks!