본문 바로가기

학습 내용 정리/sql

외래키 (foreign key) 설정

728x90
// models/post.js

static associate(models) {
	  this.hasMany(models.Comments, { // 내보내기
        sourceKey: 'postId', // 내보내는 것
        foreignKey: 'postId', // 내보낼 이름
      }); 
      this.belongsTo(models.Users, { // 불러 들이기
        targetKey: 'userId', // 불러들이는 것
        foreignKey: 'userId', // 불러들이는 이름
      });