Django 1.7 Migrations

前端 未结 4 697
时光取名叫无心
时光取名叫无心 2021-01-01 12:13

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

4条回答
  •  心在旅途
    2021-01-01 12:21

    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...

提交回复
热议问题