Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
데이터베이스 컬럼 타입을 TEXT로 변경함에 따라, User 엔티티(src/main/java/com/daramg/server/user/domain/User.java)의 profileImage 필드에도 @column(columnDefinition = "TEXT") 설정을 추가해야 합니다. 현재 제공된 User.java 소스 코드에는 이 변경 사항이 반영되어 있지 않습니다. Hibernate의 스키마 유효성 검사(validate) 기능을 사용하는 환경이라면 애플리케이션 실행 시 오류가 발생할 수 있으며, 설정이 누락될 경우 의도치 않은 동작이 발생할 수 있으므로 엔티티 클래스 수정을 권장합니다.