Skip to content

Commit

Permalink
[FIX] 한글이름으로 나오도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
unanchoi committed Jan 14, 2024
1 parent 32464b9 commit b5b6c89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public static PartResponse of(Part part,
CommonQuestion commonQuestion
) {
return PartResponse.builder()
.partName(part.getName())
.partName(part.getKoreanName())
.partContent(part.getPartContent())
.typeOfTalent(part.getTypeOfTalent())
.imageUrl(part.getImageUrl())
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ spring:

jpa:
hibernate:
ddl-auto: create-drop
ddl-auto: none
properties:
hibernate:
dialect: org.hibernate.dialect.MySQLDialect
Expand Down

0 comments on commit b5b6c89

Please sign in to comment.