Is it possible to create pivot tables in the database with the Django models ?, I need to create a table of that type to relate emails and telephones of a database in the tables of employees and clients
Is it possible to create these tables? How can I do it?
I know that I can do them directly in the database but the idea is that these tables are also versioned like the ones that Django creates with a model, it will be necessary just to put the model inside any other model.py class ?
Thanks for your help and comments!.