参考资料:django的documentation
- 配置你的数据库,打开mysite/setting.py,
DATABASES = { ‘default‘: { ‘ENGINE‘: ‘django.db.backends.sqlite3‘, ‘NAME‘: os.path.join(BASE_DIR, ‘db.sqlite3‘), #the name of your database is ‘db‘ } }
ENGINE:
django.db.backends.sqlite3‘
,‘django.db.backends.postgresql‘
,‘django.db.backends.mysql‘
, or‘django.db.backends.oracle‘,更多支持的数据库参见详细的文档说明。NAME为你的数据库名称。如果使用sqlite数据库,NAME中必须包含数据库文件的完整的绝对路径和名称。如果使用其他数据库,参见详细文档,需要更加详细的"USER","PASSWORD","HOST","PORT"等信息。
python35 manage.py migrate
系统为mysite/setting.py中INSTALLED_APPS创建数据表。
时间: 2024-11-08 19:23:37