Skip to content

Commit b084f64

Browse files
authored
hotfix: 글자수 제한 수정
1 parent fbe400c commit b084f64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/land/leets/domain/portfolio/domain/Portfolio.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class Portfolio extends BaseTimeEntity {
3131
@Column(nullable = false)
3232
private String summary;
3333

34-
@Column(nullable = false, length = 2000)
34+
@Column(columnDefinition = "text", nullable = false)
3535
private String description;
3636

3737
@Column(nullable = false)

0 commit comments

Comments
 (0)