本文介绍了auth_user错误与Django 1.8和syncdb / migrate的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当升级到Django 1.8(使用zc.buildout)并运行syncdb或迁移时,我收到以下消息:
When upgrading to Django 1.8 (with zc.buildout) and running syncdb or migrate, I get this message:
django.db。 utils.ProgrammingError:关系auth_user不存在
我的一个模型包含django.contrib.auth.models.User: p>
One of my models contains django.contrib.auth.models.User:
user = models.ForeignKey(
User, related_name='%(app_label)s_%(class)s_user',
blank=True, null=True, editable=False
)
降级到Django 1.7删除错误。我必须在Django 1.8中包含不同的User对象吗?
Downgrading to Django 1.7 removes the error. Do I have to include the User object differently in Django 1.8?
推荐答案
我先通过运行auth来解决这个问题,我的迁移:
I fix this by running auth first, then the rest of my migrations:
python manage.py migrate auth
python manage.py migrate
这篇关于auth_user错误与Django 1.8和syncdb / migrate的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!