vote up 4 vote down star

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?

flag

1 Answer

vote up 10 vote down check

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|flag
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 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 at 22:06
Make sure you check the generated model.py carefully! In particular lengths of `CharField`s and missing `ForeignKey`s 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 at 13:34
Django continues to amaze! – T. Stone Oct 11 at 7:31

Your Answer

Get an OpenID
or

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