I used South as the migration tool, but i dint know it will format all my db ! I dont want to lose my db .

link|improve this question

2  
The whole point of South is to avoid losing data when you migrate your db. – Daniel Roseman Jun 23 '11 at 11:41
What do you mean by "lose data" and "format my db"? What steps did you take that led you to this situation? We need detail! – eternicode Jun 23 '11 at 12:41
all your db are belong to South! – eternicode Jun 23 '11 at 13:26
feedback

2 Answers

up vote 3 down vote accepted

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.

link|improve this answer
I used it on my existing app only using manage.py convert_to_south myapp which automatically applies first migration to my app . – D_D Jun 23 '11 at 10:55
Then i added a field in my model and did " manage.py schemamigration my_app --auto" . Is this not suppposed to work – D_D Jun 23 '11 at 10:57
And after that you should run manage.py migrate my_app and the field will be added to database. – rebus Jun 23 '11 at 12:22
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.

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.