Incremental inspectdb, anyone?

2014-10-15 Thread Ken Winter
Is there a Django utility or add-on that can read database schemas and turn them into Django data models *incrementally*? By "incrementally", I mean that the utility would be able to update a set of already existing Django models so they match the current DB schema. In other words, the utilit

Re: Incremental inspectdb, anyone?

2014-10-15 Thread Mike Dewhirst
On 16/10/2014 7:11 AM, Ken Winter wrote: 4. Inspect a DB schema and modify the Django model set so that they match completely. Much harder, because it involves (a) comparing every detail of each existing model with the DB schema, (b) altering and deleting models as well as just creating them, a