I've got a django project with following structure:
/djninja # project dir
/djninja # main app dir
/bands # app dir
/fans # app dir
/lyrics # app dir
I've created a initial_data.yaml
file to make syncdb
load fixtures (I prefer YAML format). According to the documentation, I shall put it in any app fixtures
subdirectory. And so I did, I had:
/djninja
/djninja
/bands
/fixtures
- initial_data.yaml
/fans
/lyrics
But syncdb was omitting the file. Then I moved it into main project directory:
/djninja
/djninja
/fixtures
- initial_data.yaml
/bands
/fans
/lyrics
And still it is being omitted. I'd like to load fixtures within syncdb
command What am I doing wrong?