tags:

views:

1057

answers:

1

I'm currently using Django evolutions to manage my product's database evolutions. It's not perfect but I've learned to live with its flaws. For instance, I always have to copy my production database to test before moving out a new schema because the "evolve" command cannot always evolve a database that was changed in several small migrations (on test I did A->B->C, but A->C will not evolve correctly.)

Will South fix all of those problems? Is it worth the effort of learing a new tool?

+19  A: 

I just started using South, and I'm 100% sold on it. It's also one of the few that's still under very active development.

South should be able to properly handle the issues you've describe above. For each change to the db, it creates a file that has 2 methods "foward" and "backwards". Here's a sample automatically generated migration:

# > manage.py schemamigration issuetracker added-status-field --auto

# 0004_added-status-field.py
class Migration:

    def forwards(self, orm):

        # Adding field 'Issue.status'
        db.add_column('issuetracker_issue', 'status', orm['issuetracker.issue:status'])       

    def backwards(self, orm):

        # Deleting field 'Issue.status'
        db.delete_column('issuetracker_issue', 'status')

A couple of the nice things about it....

  • South lets you rollback to a specific migration # if you'd like

  • If your production site is on migration 0002 and your SVN commit is on 0004, South will do 0003 then 0004 to bring the production db up to speed.

  • If you've gone ahead and made the changes yourself, you can tell South to run a 'fake' migration. Normally a migration system would throw a hissy fit, but this makes it really easy to have flexible control over your db.

    manage.py migrate [appname] --fake

  • If you need to have something custom happen, like say copying the data in a column to another column, because the migration files are just python files it's easily to modify the forward/backwards functions.

  • Migrating to South after having already deployed an application was rather easy. The latest version 0.6 includes a command for it actually.

    manage.py convert_ to _south [appname]

  • And of course, how could I forget, my favorite feature is the automatic generation of migration files

    manage.py schemamigration [appname] [description] --auto


Gotchas

I figured I should add in some tips for mistakes I made when getting started with South. Not everything is 100% intuitive.

  • After you've run the convert_to_south command on your development database, don't forget to run migrate --fake on your production database, otherwise South will think it's out of date.

  • If you're creating a new app, you use the --initial flag

  • Stop using manage.py syncdb. Really.

  • Editing a model is a 3 step process --

    1.) save the model changes

    2.) run schemamigration --auto

    3.) run migrate to actually commit the changes to the database

Edit -- To clarify the comments below, South was officially voted by the core contributors to not be included with Version 1.2. This was in part because the author of South had requested that it not yet be included. Even still, there is a lot of community support for South, and some reusable app makers are beginning to include South migrations with their app.

*Edit #2 -- I made some updates to reflect the new manage.py command structure from the current trunk version of South. "startmigration" has been split to "schemamigration" and "datamigration" depending on what you're doing.

T. Stone
Also, South is becoming part of django.contrib in Version 1.2 which will make it the standard system for migration: http://code.djangoproject.com/wiki/Version1.2Features
Adam Nelson
@Adam Nelson that is yet to be decided. The wiki page you linked to is a list of proposals. Core devs are currently voting on the proposals (to get a sense of overall support for them), and I believe opinion is currently trending towards not including South (yet). The South maintainer has said he'd prefer not to be tied to the Django release schedule at this point.
Carl Meyer
heya, thanks for the advice!
Evgeny