I know that I can use ForeignKey
's related_name
argument to control what the back-reference's name will be. But is it possible to avoid creating a back-reference completely?
(e.g., I have in Car a field ForeignKey(Person), and I don't want Person to have an attribute that leads backs to Car.)