我有一个Cafe and Feature模型。我想有一个连接表,在该表中可以找到咖啡馆和功能的ID。我还想通过sequelize在该连接表中播种一些数据。 我的问题是,该表不是由迁移生成的,因为我没有联接表的模型(我不想这样做)。
这些是我的协会:
cafe.belongsToMany(models.feature, {as: 'cafes', through: 'cafe_features'});
feature.belongsToMany(models.cafe, {as: 'features', through: 'cafe_features'});
我不知道种子的样子,也不知道如何在该联接表中选择或插入一些东西。 谁能帮我吗?