Skip to content

Commit

Permalink
FIx: 북마크 썸네일 최대길이 확대
Browse files Browse the repository at this point in the history
FIx: 북마크 썸네일 최대길이 확대
  • Loading branch information
Train0303 authored Nov 11, 2023
2 parents 67657e3 + 051207d commit e94aada
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ public class Bookmark extends AuditingEntity {
@Column(length = 200, name = "bookmark_description")
private String bookmarkDescription;

@Column(length = 1024, name = "bookmark_thumbnail")
// 현재 이미지 링크를 디비에 저장하고 있어, 최대 길이 확보.
@Column(length = 65535, name = "bookmark_thumbnail")
private String bookmarkThumbnail;

public void moveCategory(Category category) {
Expand Down

0 comments on commit e94aada

Please sign in to comment.