2👍
If you just want to generate an updated diagram to work with your team:
- Install django-extensions and pygraphiz:
pip install pygraphviz django-extensions
- Add ‘django_extensions’ to INSTALLED_APPS: this will enable django-extensions management commands
- Generate the graph:
./manage.py graph_models -a -g -o my_project_visualized.png
Read more about the graph_model command.
👤jpic
Source:stackexchange.com