💥 에러 메시지Cannot add or update a child row: a foreign key constraint fails (`fairplay_db`.`todo`, CONSTRAINT `todo_ibfk_2` FOREIGN KEY (`assigned_to`) REFERENCES `member` (`id`) ON DELETE SET NULL)❓ 발생 상황Spring Boot 기반의 할 일 관리(todo) 기능에서 새로운 할 일을 DB에 INSERT하려고 했을 때 다음과 같은 에러가 발생했다.// TodoServiceImpl.java todoRepository.insert(todo); // INSERT 쿼리 실행 시 에러 발생 🧾 테이블 구조 요약-- todo 테이블 CREATE TABLE tod..