tags:

views:

52

answers:

1

how can i migrate entiry db at one step? south`s startmigration command can work only with single application

+3  A: 

Even with raw SQL, you wont be able to migrate an entire database in a single step as you need a query per table. You can however, create migrations for all apps, and then run them all at once. That's the closest thing you'll come to a one step migration.

googletorp
that`s the problem. how automate this process if I don`t know how many applications will be at the end?
Pil
The applications should be reflected in the database and vice versa. So if you know your database, you should know your applications.
googletorp