且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Sequelize Migration:关系<table>不存在

更新时间:2023-10-10 22:19:10

你已经创建了 Authors 表,但是用一个小的 a 引用它.应该是这样的

You have created Authors table but referencing it with a small a. It should be like

references: {
  model: 'Authors',
  key: 'id'
},