我想在两个带有羽毛续集的模型之间添加多对多关系,并且在连接表中,我想添加附加属性。sequelize 的文档很清楚:我必须创建一个新模型,我喜欢这样的使用
const User = sequelize.define('user', {})
const Project = sequelize.define('project', {})
const UserProjects = sequelize.define('userProjects', {
status: DataTypes.STRING
})
User.belongsToMany(Project, { through: UserProjects })
Project.belongsToMany(User, { through: UserProjects })
但是当我在我的羽毛应用程序中定义一个新模型时,它没有在数据库中创建,所以我的关系不起作用