数据库表分析及创建

数据库表迁移

  • 确认当前配置的数据库是否存在
mysql> use information;
  • constants.pymodels.py 文件拷贝到项目的 info 目录下

注:constants.py 是当前项目中要使用的一些常量,预先定义好的,models.py 文件中需要使用到该文件中的一些常量

  • 并在 manage.py 中导入 models

form info import models

在迁移的时候以便能读取到对应模型

  • 执行数据库迁移
$ python manage.py db init
$ python manage.py db migrate -m"initial"
$ python manage.py db upgrade
  • 查看数据库表是否创建完成
mysql> show tables;
  • 执行导入初始分类的 SQL 语句
mysql> source info_info_category.sql

注意:生成的迁移文件不需要提交到 git 保存,所以需要在 .gitignore 文件中添加以下内容以便忽略迁移所生成的系列文件:

migrations

测试数据的添加

  • 先添加分类测试数据
mysql> source 路径/information_info_category.sql
  • 再添加新闻测试数据
mysql> source 路径/information_info_news.sql