我想用一个临时数据库启动
django shell(就像做django测试时所做的那样)
有没有像这样的命令:
python manage.py testshell
我可以创建一堆虚假模型而不污染我的数据库?
解决方法
没关系,这
blog post解释了它
>>> from django import test >>> test.utils.setup_test_environment() # Setup the environment >>> from django.db import connection >>> db = connection.creation.create_test_db() # Create the test db