what does the two table Users and auth_user in Django are for? -
i know functionality of user model
in django
. when syncdb
, see of many auth_* tables
created, there 1 auth_user
. there yet user
table. there differences between them in columns. attaching them here. when add new user gets stored in auth_user table, user
table empty. user
table (why created if empty) , useful. why not populated?
the auth_user
table keeps track of registered users django's included auth system.
the users
table not created django. must created third-party django app using, or created through other process entirely.
Comments
Post a Comment