* Creates an association between this (the source) and the provided target. The foreign key is added on the source. * * @param {Model} target The target model * @param {object} [options] belongsTo association options * @param {boolean} [options.hooks=false] Set
(target, options)
| 4694 | * Profile.belongsTo(User) // This will add userId to the profile table |
| 4695 | */ |
| 4696 | static belongsTo(target, options) {} // eslint-disable-line |
| 4697 | } |
| 4698 | |
| 4699 | /** |
no outgoing calls