Avoid Django’s GenericForeignKey

In Django, a GenericForeignKey
is a feature that allows a model to be related to any other model in the system,
as opposed to a ForeignKey
which is related to a specific one. Read more

Similar