[Answer]-What does the two table Users and auth_user in Django are for?

1👍

The auth_user table keeps track of registered users for Django’s included auth system.

The Users table is not created by Django. It must be created by a third-party Django app you are using, or it is created through some other process entirely.

👤mipadi

Leave a comment