How can I automatically load fixtures into my development database but not my production database wh
Posted
by Mike
on Stack Overflow
See other posts from Stack Overflow
or by Mike
Published on 2010-05-16T00:45:40Z
Indexed on
2010/05/16
0:50 UTC
Read the original article
Hit count: 271
I'd like to load some test data into my development db but not put it into my production db.
In django you can create database-specific fixtures using this mechanism: http://docs.djangoproject.com/en/dev/ref/django-admin/#database-specific-fixtures
It is possible to do something similar with django-nonrel?
© Stack Overflow or respective owner