Changes between Version 32 and Version 33 of SchemaEvolution


Ignore:
Timestamp:
Jul 20, 2007, 12:26:03 AM (17 years ago)
Author:
public@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SchemaEvolution

    v32 v33  
    406406make things non-painful" as everything else. In the case of Carol she has to write some custom code for migration though, that's inevitable.
    407407-- Anders Hovmöller
     408
    408409}}}
     410
     411== Implementation: Automatic DB Introspection ==
     412
     413This: [http://kered.org/blog/2007-07-19/django-schema-evolution/] is an implementation of the automatic introspection idea, ported to
     414both 0.96 and the latest svn (as of 7/19/2007).  It handles renames however not through an interactive UI, but through "aka" metadata,
     415either attached to the classes or the fields.  This allows renames to be tracked through your revision control system along with the
     416more 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
Back to Top