Is there a GUI tool using which I can design new Django models graphically? For example, drawing lines between fields in different models to indicate a foreign key.
Modifying existing models graphically would also be nice.
Is there a GUI tool using which I can design new Django models graphically? For example, drawing lines between fields in different models to indicate a foreign key.
Modifying existing models graphically would also be nice.
uml-to-django might be of interest to you, though I can't personally vouch for it.
Another suggestion is found in Django Builder, you can define a model and the builder will get all your program needs such as views, serializers, urls, tests, admins, forms, and full functional html files in an instant.
UPDATE
There is also new version for Django Builder called djangobuilder.io.
uml-to-django might be of interest to you, though I can't personally vouch for it.
You can import django models on dbpatterns.
You can normally generate your models in Django and migrate them to a database and read that database with DBeaver (https://dbeaver.com) and generate the ERD to see your db desing.
© 2022 - 2024 — McMap. All rights reserved.