When applying a recent migration to my app, I encountered the following message in the output:

 - Loading initial data for myapp

I had a bit of a Eureka moment. It seems like it's possible to have South inject initial data into the database after performing a migration. How can I do this?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Seems like you can tell South what data to inject the same way you tell syncdb - using fixtures.

link|improve this answer
1  
Essentially, create a folder called fixtures in your app's directory, then in that directory create a file called initial_data.(yaml|xml|json) with the data you'd like to insert. Run django-admin migrate or django-admin syncdb to apply the initial data. \m/ – TK Kocheran Nov 4 '11 at 22:48
feedback

Your Answer

 
or
required, but never shown

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