I'm trying to use django-generic-ratings
and django-reviews
together. However, they both have models named Vote
and both these models defined a field to User with the same related name votes
From this similar question Django: Model name clash , it looks like one way to mitigate this is to change the source code of one app and have it use a different related name. Is there a way to reconcile this related_name clash with code outside these 2 apps (without having to modify either apps' code)?