G’day All,
I am transitioning from building a solution in Access to trying to replicate it in Django. I have a data model where there is a table that has companies and another table that has capabilities and I currently use a third table to link which companies have what capabilities.
In Django, the issue I have struck is that this is a table with just two foreign keys, so the str function is not happy. Two questions:
- Am I using the right approach
- If so, how should it be configure in the model to work best.
Thanks