Having not been content with the state of Django migrations systems, I've created one of my own:
http://www.bitbucket.org/DeadWisdom/migratory/ The idea is a database migration system that: * Is simple. * Doesn't make you use sql. This is an orm, we shouldn't have to use sql. * Can be automatic. Predicts the migration script for you so you don't have to think about what has changed. * Works well in a version control system, or even distributed ones. Because damnit. * During the migration process, *allows you to use the state of your previous models as if they were still there*. This is key, and is not done anywhere else, as far as I know. Currently it's tested on mysql, postgresql_psycopg2, and sqlite3. Thanks. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~----------~----~----~----~------~----~------~--~---
