[Answered ]-Best way of Django modeling

2👍

If you just want to generate an updated diagram to work with your team:

  1. Install django-extensions and pygraphiz: pip install pygraphviz django-extensions
  2. Add ‘django_extensions’ to INSTALLED_APPS: this will enable django-extensions management commands
  3. Generate the graph: ./manage.py graph_models -a -g -o my_project_visualized.png

Read more about the graph_model command.

👤jpic

Leave a comment