10

After running syncdb and creating a su, where does that get recorded? Settings.py doesn't seem to change.

fooba
  • 269
  • 3
  • 6

1 Answers1

10

It gets recorded as an instance of django.contrib.auth.models.User.

Ignacio Vazquez-Abrams
  • 776,304
  • 153
  • 1,341
  • 1,358
  • 9
    Which is to say that its stored in the database in a table called auth_user. – Justin Abrahms May 15 '10 at 22:27
  • 1
    To 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