I basically want to take an existing mysql database structure created and used by a php app (codeigniter framework) and reverse engineer it to a django app. is there some tool to do this? south migrations maybe?

link|improve this question

feedback

1 Answer

up vote 16 down vote accepted

Create a project, and point your settings @ your database

Then run

./manage.py inspectdb

This will print out a python models file for the DB you're pointing at

You can output this to a file by doing something like

./manage.py inspectdb > models.py

And then you can move the file to the most suitable location, and edit it as needed.

link|improve this answer
Good answer. Chapter 18 of the Django Book has further details on using inspectdb to integrate existing databases - djangobook.com/en/2.0/chapter18 – Alasdair Oct 9 '09 at 21:26
Great this is what i wanted exactly!, also going to generate the er diagram based on this using graphviz & django_extensions – Rasiel Oct 9 '09 at 22:06
Make sure you check the generated model.py carefully! In particular lengths of CharFields and missing ForeignKeys was the problem cases last time I used it. It saved many hours of making the model.py by hand though. – Nick Craig-Wood Oct 10 '09 at 13:34
1  
Django continues to amaze! – T. Stone Oct 11 '09 at 7:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.