After running syncdb and creating a su, where does that get recorded? Settings.py doesn't seem to change.
Asked
Active
Viewed 3,863 times
1 Answers
10
It gets recorded as an instance of django.contrib.auth.models.User
.

Ignacio Vazquez-Abrams
- 776,304
- 153
- 1,341
- 1,358
-
9Which is to say that its stored in the database in a table called auth_user. – Justin Abrahms May 15 '10 at 22:27
-
1To add to that, you can find information about which table is being used by looking at the `DATABASES` section of the `settings.py` file or whatever `DJANGO_SETTINGS_MODULE` is pointing to. – Akaisteph7 Sep 24 '21 at 20:08