我安装了一个应用程序 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 修复该错误?
谢谢