Skip to content

Commit c85aa0d

Browse files
authored
Increase length of image_url column to 1024
1 parent 2479284 commit c85aa0d

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/gdg/linking/domain/item

1 file changed

+1
-1
lines changed

src/main/java/com/gdg/linking/domain/item/Item.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public enum ItemStatus {
8888
private LocalDateTime updatedAt;
8989

9090
// 썸네일 이미지 주소 저장 필드
91-
@Column(name = "image_url")
91+
@Column(name = "image_url", length = 1024)
9292
private String imageUrl;
9393

9494
public void restore() {

0 commit comments

Comments
 (0)