I have apps Users and Projects and would like to define another app called Roles for extending django-auth for per-project basis.
I defined ProjectMembership in the Roles app as a custom ManyToMany relationship model. But how can I define the M2M field in User or Project model with through
declaration?
So question is can we define model's field from another app?