Color me confused. Let's assume we've got a Django project with South migrations. Currently, production project version is A, version in development B. Now let's suppose version B is installed into production:
- Install new code
- Run
./manage.py syncdb && ./manage.py migrate - Restart web-server and be happy.
Next assumption: version B doesn't work at all. It did in development, but doesn't in production, so it has to be rolled back. And this is where I must be missing something. I see two possibilities:
- Old code in reinstalled. Now, a South back-migration would be appropriate, however, this is not possible, since the old code doesn't contain all the newest migrations needed to go back.
- We first roll-back database changes and then reinstall the old code. However, how do we know which migration is the latest for version
A? Since one project could easily count a couple dozen apps, you'd need to figure out for each of them which migration stand belongs to the old version, then migrate each app separately and then rollback the code and hope for the best.
In both cases, I'm missing crucial information, either migration code in the first case or "migration <-> version" relationship in the second. What am I missing here?
PS: Yes, I know I can restore the database from backup, this is what I actually do. I want to know how this whole database migration theory fits with rollbacks.