[TIL] 230717

김주희·2023년 7월 17일
1

내배캠 10주차 TIL

목록 보기
1/5

오늘의 목표

  1. 팀 프로젝트 틀 잡기
  2. 후발대 강의 듣기

▶️ 프로젝트 틀 잡기

▶️ M:N 관계 테이블

  • belongsToMany : M:N관계가 맺어진 테이블을 belongsToMany로 설정하고 through로 참고하는 테이블 설정
this.belongsToMany(models.PetSitterInfos, {
        through: 'Reservations',
        foreignKey: 'userId',
        otherKey: 'petSitterId',
});

this.belongsToMany(models.Users, {
        through: 'Reservations',
        foreignKey: 'petSitterId',
        otherKey: 'userId',
});
profile
꾸준히 하자

1개의 댓글

comment-user-thumbnail
2023년 7월 17일

소중한 정보 잘 봤습니다!

답글 달기