Why will not django admin let me in?

1

I have a problem when starting the Django admin. When I'm going to put the username and password (which are the correct ones and with the creation of superuser) it tells me that one of the fields is not correct.

What can I do in this case and be able to enter my django admin?

    
asked by Rocio Cejudo 02.09.2018 в 17:26
source

1 answer

2

You probably have to do the python manage.py migrate to create the tables in the database corresponding to users and permissions .

    
answered by 03.09.2018 / 20:08
source