vote up 8 vote down star
10

I quite like Rails' database migration management system. It is not 100% perfect, but it does the trick. Django does not ship with such a database migration system (yet?) but there are a number of open source projects to do just that, such as django-evolution and south for example.

So I am wondering, what database migration management solution for django do you prefer? (one option per answer please)

flag

71% accept rate

5 Answers

vote up 5 vote down check

I've been using South, but Migratory looks promising as well.

link|flag
vote up 7 vote down

Migratory looks nice and simple.

link|flag
Wow! I love it! Thanks. – MiniQuark Jan 8 at 23:29
+1 Thank you for the link – umnik700 Jan 9 at 16:45
vote up 3 vote down

We use Django at work, and we've been using dmigrations. While it has its quirks, it's been useful so far. Some features:

  • It uses a table in the database to keep track of which migrations have been applied.
  • Because it knows which ones have been applied, you can migrate up and back down.
  • It integrates with manage.py as a command.
  • The individual migration scripts are Python, but if your migration logic is pure SQL, dmigrations makes it easy to just can the SQL and have it executed.

One problem is that it only currently supports MySQL. However, one of our guys make a local hack to it to support PostgreSQL, which we use. As I recall, the hack wasn't all that extensive, so it shouldn't be terribly difficult to hack it up to support other RDBMSs.

link|flag
vote up 1 vote down

I like django-evolution:

pros:

  • clean design
  • no SQL needed
  • flexible
  • trivial to install
  • easy to use

cons:

  • migrations are not fixed in the codebase
  • a risk exists of accidently running a migration twice
link|flag
I don't think it's possible in the normal workflow to run a migration twice. When I run manage.py evolve --hint --execute, it applies the changes, running it second time does nothing. – TomA Sep 2 at 17:23
vote up 0 vote down

Besides South, dmigrations, django-evolution, and Migratory I thought I would add simplemigrations as another tool I've seen for automating Django migrations.

I've used three of these in the past but do migrations by hand now. I'm thinking about trying South again due to the latest features added.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.