[Fixed]-Django.db.utils.IntegrityError: UNIQUE constraint failed: auth_user.username

1👍

You already have an entry for cgarden as a username for User in your database. This is what the error message means.

You can query your database withing the Django Shell (python manage.py shell). I suggest using a database exploration tool (maybe in your IDE) to make things easier.

Leave a comment