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.
관련 이슈
PR 세부 내용
지금까지 정의된 엔티티에 대해 DDL 파일을 추가했습니다.
Language
,NewsType
과 같은 Enum 타입은@Enumerated(EnumType.STRING)
어노테이션을 사용하여 DB에 varchar 타입으로 저장되게 하였지만, 하이버네이트 schema validation에서 enum 타입이 아니라고 예외를 던지더군요. 😂이전 프로젝트에선 이런 일이 없어 당황스러웠네요.
우선
columnDefinition = "varchar"
속성으로 해결했습니다.또한 Content의 content 컬럼은 원래 BLOB(LONGTEXT) 이었지만, 뉴스의 길이가 64KB를 넘기지 않을 것 같아 TEXT로 타입을 설정했습니다.
나중에 번역된 뉴스의 길이를 보고 BLOB으로 변경할 수 있어야 할 것 같네요.
또한 local 프로파일에 MySQL, Flyway, 로깅 등 설정을 추가했습니다.
local 프로파일은 개인 마다 설정을 다르게 할 필요가 있으므로
.gitignore
에 등록하여 깃의 staging 대상에 들어가지 않도록 하는 방법도 좋아보이네요.