Is there a way to automatically create the models.py model definition when you already have an existing database?
I have a complicated database with tables and relationships already setup up in MySQL, and would like to avoid creating the models.py file from scratch if possible.
Is there a way to automatically create the models.py model definition when you already
Share
You can use :
According to the documentation :
More information in the Django Book 2.0 – Chapter 18: