1.README.md

# 设计数据库结构

### sequelize库

需要安装下面两个模块

- sequelize : 供程序使用
- sequelize-cli : 供命令行使用的工具

#### 初始化

sequelize init
即
.\node_modules\.bin\sequelize
.\node_modules\.bin\sequelize init

初始化以后会生成:

- config : 配置目录
- migrations : 迁移文件(数据库表结构)
- seeders : 种子文件(生成测试数据)
- models : 模型文件(sequelize命令工具使用不多,主要是给程序使用)

2.项目结构

Node+TS+Koa+vue 商城全栈(一) sequelize 初始化项目

相关文章:

  • 2021-11-09
  • 2022-01-19
  • 2021-07-11
  • 2021-08-25
  • 2021-11-09
  • 2022-12-23
  • 2022-02-09
  • 2022-12-23
猜你喜欢
  • 2022-02-06
  • 2021-05-21
  • 2021-09-19
  • 2021-12-19
  • 2021-12-04
  • 2021-05-21
  • 2022-02-16
相关资源
相似解决方案