I used South as the migration tool, but i dint know it will format all my db ! I dont want to lose my db .
feedback
|
|
It doesn't have to format your data, you can integrate existing apps/tables: http://south.aeracode.org/docs/tutorial/part1.html#converting-existing-apps Read through the docs before using it. | |||||||
feedback
|
|
South shouldn't trash your data. But a Django gotcha in general to be aware of is that any initial_data fixtures will get imported whenever you do a syncdb, so bewore of leaving those files hanging around. | |||
|
feedback
|