오늘의 목표
- 팀 프로젝트 틀 잡기
- 후발대 강의 듣기
▶️ 프로젝트 틀 잡기
▶️ M:N 관계 테이블
this.belongsToMany(models.PetSitterInfos, {
through: 'Reservations',
foreignKey: 'userId',
otherKey: 'petSitterId',
});
this.belongsToMany(models.Users, {
through: 'Reservations',
foreignKey: 'petSitterId',
otherKey: 'userId',
});
소중한 정보 잘 봤습니다!