[Fixed]-Is it possible to disable django related_name for a specific field?

24👍

Yes, disabling backward relations is a documented feature:

last_waypoint_visited = models.ForeignKey('WayPoint', related_name='+')

Leave a comment