For instance, Model Resume contains variable number of Model Project ‘s,
What should be my models and relationships between them to achieve this ?
Thanks in advance.
For instance, Model Resume contains variable number of Model Project ‘s, What should be
Share
Seems to me that what you need is a many-to-many relationship between Resume and Project, so I would suggest doing something like this:
Note that a default association table will be defined by Django under the hood this way.
And now you have a model in which a resume can be related with multiple projects and vice versa.