【发布时间】:2014-04-28 16:45:34
【问题描述】:
我安装了一个应用程序 django-ratings。我想同步数据库,但这是我的错误:
djangoratings.vote: 'user' defines a relation with the model 'auth.User',
which has been swapped out. Update the relation to point at settings.AUTH_USER_MODEL.
我正在使用 AllAuth 进行 Facebook 登录,以及具有一些额外功能的自定义用户身份验证。
在我提供的设置文件中
AUTH_USER_MODEL = 'accountext.User'
如何从 djangoatings 修复该错误?
感谢
【问题讨论】:
-
确保
accountext在INSTALLED_APPS中 -
accountext 在 INSTALLED_APPS 中:/
标签: python django django-ratings