I've inherited a v 1.0 Django/Python intranet site.
Django normally pushes from the Django code into the database. For say, table definitions (DDL).
Db architects associated with the project have a new database design that they want me to hook up to the site.
That is, I need somehow to pull the DDL defintions from out of the db and into Django code. E.g. some way to generate a new class from a table.
I know a lot of python but much less Django. Any ideas on how this might be done?