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
2009-12-10 08:02:37
that`s the problem. how automate this process if I don`t know how many applications will be at the end?
Pil
2009-12-10 08:17:29
The applications should be reflected in the database and vice versa. So if you know your database, you should know your applications.
googletorp
2009-12-10 09:09:39