In django, what\'s the difference between a ManyToOneRel and a ForeignKey field?
Django relations model exposes (and documents) only OneToOneField, ForeignKey and ManyToManyField, which corresponds to the inner
See source of django.db.models.fields.related for further details.
ManyToOneRel
is not a django.db.models.fields.Field
, it is a class that is used inside Django but not in the user code.