I am using django 1.7 and I just added a custom user model. When I run either python3 manage.py makemigrations or python3 manage.py migrate I get t
python3 manage.py makemigrations
python3 manage.py migrate
Had the same problem. I solved it with:
pip install django --upgrade python manage.py makemigrations python manage.py migrate
Why exactly it gets solved like that, I dont know, someone with deeper knowledge might be able to explain...