2👍
✅
It seems django-voting app has not been updated for a while. Any app should not directly reference the User
model anymore.
It is better to change the models.py (django-voting) to this:
from django.conf import settings
user = models.ForeignKey(settings.AUTH_USER_MODEL)
Source:stackexchange.com