I have a few apps set up, to one of which I just added a fixture. I created an "initial_data.yaml" file in a subdirectory "fixtures" under the app folder, so the full path is project_dir\apps\job\fixtures\initial_data.yaml.
I've tried both
python manage.py syncdb
and
python manage.py schemamigration job --auto
and both of them give me:
No fixtures found.
What am I doing wrong, here?
INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', 'django.contrib.staticfiles', # Uncomment the next line to enable the admin: 'django.contrib.admin', # Uncomment the next line to enable admin documentation: # 'django.contrib.admindocs', 'django.contrib.webdesign', 'south', 'haystack', # Our Apps # 'jobfinder.apps.job', 'jobfinder.apps.profile', )– Paul Zaczkowski May 5 '11 at 1:21FIXTURE_DIRSin mysetting.py. For whatever reason, this isn't stated in the docs (I was under the assumption it would look for fixtures under app directories automatically, but it seems that's not the case). Maybe it would be a considerable contribution to Django ^_^. I ended up using the YAML file after-all. – Paul Zaczkowski May 5 '11 at 1:33