步骤:
1.选定数据库,然后修改 settings.py 中的 DATABASES配置
实验过了sqlite3. 应该是这个样子的:
2. 创建app, 建立数据表模型.
python manage.py startapp TestModel3. 添加数据表模型类到settings.py的 INSTALLED_APPS 列表
4.创建数据表: python manage.py syncdb
表名组成结构为:app名_类名