학습 내용 정리/sql
외래키 (foreign key) 설정
verdantjuly
2023. 8. 4. 19:43
728x90
// models/post.js
static associate(models) {
this.hasMany(models.Comments, { // 내보내기
sourceKey: 'postId', // 내보내는 것
foreignKey: 'postId', // 내보낼 이름
});
this.belongsTo(models.Users, { // 불러 들이기
targetKey: 'userId', // 불러들이는 것
foreignKey: 'userId', // 불러들이는 이름
});