Skip to content

Commit

Permalink
Merge pull request #353 from Team-Smeme/develop
Browse files Browse the repository at this point in the history
Deploy: deploy spring4 to prod server
  • Loading branch information
thguss authored Dec 10, 2024
2 parents 23d1b54 + 16359c7 commit 7053add
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 @@ -43,7 +43,7 @@ public Correction toDomain() {
return Correction.builder()
.originalSentence(originContent)
.correctedSentence(correctedContent)
.reason(reason)
.reason(reason == null ? "" : reason)
.isCorrected(corrected)
.build();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class DiaryEntity extends BaseEntity {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@Column(columnDefinition = "TEXT", nullable = false)
@Column(length = 6000, nullable = false)
private String content;
@Column(nullable = false)
@Enumerated(value = EnumType.STRING)
Expand Down

0 comments on commit 7053add

Please sign in to comment.