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 p开发者_开发问答ossible to do something similar with django-nonrel?
By default, the local datastore is separate from the production datastore.
精彩评论