Here's what I want to do.

Develop a Django project on a development server with a development database. Run the south migrations as necessary when I change the model.

Save the SQL from each migration, and apply those to the production server when I'm ready to deploy.

Is such a thing possible with South? (I'd also be curious what others do to get your development database changes on production when working with Django)

link|improve this question

Sheer curiosity: Why do you wish to make the changes manually, instead of migrating the app with South on production as well? – Neves Apr 29 '11 at 16:15
It's going to be pretty critical data, and honestly I don't know if I trust any package enough to have at my data. I'd rather inspect the SQL it's going to run first to make sure it won't harm anything. I guess I could take the system offline and backup the data before migrating. – Greg May 4 '11 at 20:00
That makes sense, thanks. My experience with South has been good enough for me to have some trust that things won't go... well, south. :-) I also don't think South has any way to inspect the resulting SQL though, but I might be wrong. Adding a bounty to see if someone chimes in with a definitive answer. – Neves May 5 '11 at 8:28
feedback

3 Answers

You can at least inspect the sql generated by doing manage.py migrate --db-dry-run --verbosity=2. This will not do anything to the database and will show all the sql. I would still make a backup though, better safe than sorry.

link|improve this answer
feedback

I'd either do what Lutger suggested (and maybe write a log parser to strip out just the SQL), or I'd run my migration against a test database with logging enabled on the test DB.

Of course, if you can run it against the test database, you're just a few steps away from validating the migration. If it passes, run it again against production.

link|improve this answer
feedback

You could try logging the SQL queries in db.connection.queries, using a management command that calls the migrate with a dry-run option:


from django.core.management.base import BaseCommand
from django import db

class Command(BaseCommand):
    help = 'Output SQL for migration'

    def handle(self, *app_labels, **options):
        # assumes DEBUG is True in settings
        db.reset_queries()

        from django.core.management import call_command
        kw = {'db-dry-run': 1,  'verbosity': 0}
        call_command('migrate', **kw)

        for query in db.connection.queries:
            print query['sql']

Assuming that south puts everything through the usual db interface that should work. There will be a few extra selects in there when it queries the history table.

You'd put that in a management/commands/print_migration_sql.py inside your app and then run it:


python manage.py print_migration_sql

It could probably be easily extended to run this only for specific apps etc

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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