[Answered ]-Create django model from SQL table definitions

2👍

Have a look at the documentation for integrating existing databases.

It looks like you should be able to create the database table, then have django inspect it and create the model.

python manage.py inspectdb > models.py

Leave a comment