* Create an N:M association with a join table. Defining `through` is required. * * @param {Model} target Target model * @param {object} options belongsToMany association options * @param {boolean} [options.hooks=false] Set to true to run before-/aft
(target, options)
| 4492 | * Project.belongsToMany(User, { through: UserProjects }) |
| 4493 | */ |
| 4494 | static belongsToMany(target, options) {} // eslint-disable-line |
| 4495 | |
| 4496 | /** |
| 4497 | * Creates an association between this (the source) and the provided target. The foreign key is added on the target. |
no outgoing calls