kcsoderstrom
Results
1
comments of
kcsoderstrom
In version 4.37.7, I ran into this with the following structure: ``` Prairie.hasMany(PrairieFlowerSpecies, { foreignKey: 'prairie_id', sourceKey: 'prairie_id' }); Prairie.belongsToMany(FlowerSpecies, { through: PrairieFlowerSpecies, as: 'flower_species', foreignKey: 'flower_species_id', otherKey: 'prairie_id', });...