Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE users MODIFY COLUMN profile_image TEXT;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

데이터베이스 컬럼 타입을 TEXT로 변경함에 따라, User 엔티티(src/main/java/com/daramg/server/user/domain/User.java)의 profileImage 필드에도 @column(columnDefinition = "TEXT") 설정을 추가해야 합니다. 현재 제공된 User.java 소스 코드에는 이 변경 사항이 반영되어 있지 않습니다. Hibernate의 스키마 유효성 검사(validate) 기능을 사용하는 환경이라면 애플리케이션 실행 시 오류가 발생할 수 있으며, 설정이 누락될 경우 의도치 않은 동작이 발생할 수 있으므로 엔티티 클래스 수정을 권장합니다.

Loading