You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
i can't find a way to use this package because i am using uuids as pk for most of my models. This clashes with the object_id = models.PositiveIntegerField().
Trying to vote on an object with uuid results in DataError: integer out of range
Would it be possible, to include this functionality ? I would be clad if i could help making this change possible. But this would be my first contribution to open source and I would need some guidance.
The text was updated successfully, but these errors were encountered:
Hello,
i can't find a way to use this package because i am using uuids as pk for most of my models. This clashes with the
object_id = models.PositiveIntegerField()
.Trying to vote on an object with uuid results in
DataError: integer out of range
As far as i know it should be possible to use
object_id = models.PositiveIntegerField()
as well.See: https://docs.djangoproject.com/en/3.2/ref/contrib/contenttypes/#django.contrib.contenttypes.fields.GenericForeignKey
Would it be possible, to include this functionality ? I would be clad if i could help making this change possible. But this would be my first contribution to open source and I would need some guidance.
The text was updated successfully, but these errors were encountered: