I’m hitting a wall here and I know this is a simple question, but I was unable to find it here.
In an ER diagram, what would the relationship be between two objects that have a ManyToMany relationship, in terms of the intermediary table?
Example:
item ---- item_facts ---- fact
I feel like it should be one to one but I’m not completely sure.
In django documentation it states that
And ForeignKey definition is like:
So,
ManyToManyrelations created by django are creating intermedıary tables that are1 to N.