The addAssociation mixin applied to models with hasMany. An example of usage is as follows:
class User extends Model<InferAttributes<User>, InferCreationAttributes<User>> { declare addRole: HasManyAddAssociationMixin<Role, Role['id']>;}User.hasMany(Role); Copy
class User extends Model<InferAttributes<User>, InferCreationAttributes<User>> { declare addRole: HasManyAddAssociationMixin<Role, Role['id']>;}User.hasMany(Role);
Optional
Model.hasMany
Generated using TypeDoc
The addAssociation mixin applied to models with hasMany. An example of usage is as follows: