| 410 | |
| 411 | == Implementation: Automatic DB Introspection == |
| 412 | |
| 413 | This: [http://kered.org/blog/2007-07-19/django-schema-evolution/] is an implementation of the automatic introspection idea, ported to |
| 414 | both 0.96 and the latest svn (as of 7/19/2007). It handles renames however not through an interactive UI, but through "aka" metadata, |
| 415 | either attached to the classes or the fields. This allows renames to be tracked through your revision control system along with the |
| 416 | more obvious adds/deletes. It is also a relatively low-impact patch. More documentation available here: |
| 417 | [http://kered.org/blog/wp-content/uploads/2007/07/django_schema_evolution_documentation.html] |
| 418 | |
| 419 | -- Derek Anderson |