[Answered ]-No such table: users_customuser in Django

1👍

You have to make use of these two commands –

python manage.py makemigrations (It creates the migration)

python manage.py migrate (Actually creates the table in database)

Leave a comment