[Fixed]-Postgres in django app queries using PK UUID fields INT rather then the UUID

1👍

Your model’s PK might be a UUID, but the object_id field that’s part of the GenericForeignKey field in TaggedItem is still an integer.

There wouldn’t really be a good way of fixing this without modifying the taggit app itself, unfortunately.

Leave a comment