부모테이블에 데이터가 존재하지 않는데
자식 테이블에 데이터를 삽입하려 할때 생기는 오류
errno: 1452,
sqlState: '23000',
sqlMessage: 'Cannot add or update a child row:
a foreign key constraint fails (`layered-architecture`.`PostLikes`,
CONSTRAINT `PostLikes_ibfk_2` FOREIGN KEY (`postId`)
REFERENCES `Users` (`userId`) ON DELETE CASCADE)',
postId: {
type: Sequelize.INTEGER,
allowNull: false,
references: {
model: "Users",
key: "userId",
},
onDelete: "CASCADE",
},
..User의 userId를 참고해서 오류
마이그레이션 파일도 체크해야겠다.