auth_user error with Django 1.8 and syncdb / migrate

前端 未结 8 915
独厮守ぢ
独厮守ぢ 2021-01-31 14:03

When upgrading to Django 1.8 (with zc.buildout) and running syncdb or migrate, I get this message:

django.db.utils.ProgrammingError: relation \"auth_user\" does no

8条回答
  •  既然无缘
    2021-01-31 15:08

    I fix this by running auth first, then the rest of my migrations:

    python manage.py migrate auth
    python manage.py migrate
    

提交回复
热议问题