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?
|
|
Create a project, and point your settings @ your database Then run
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
And then you can move the file to the most suitable location, and edit it as needed. |
||||||||
|
