Skip to content

Commit

Permalink
add: 이미지 주소 컬럼 바이트 제한 1000으로 변경 (default = 255)
Browse files Browse the repository at this point in the history
  • Loading branch information
dong2ast committed Jul 21, 2023
1 parent 3e74f00 commit 2ee9f4a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/org/sophy/sophy/domain/Booktalk.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public class Booktalk extends AuditingTimeEntity {
@Column(nullable = false)
private String title;

@Column(length = 1000)
private String booktalkImageUrl;

@ManyToOne(fetch = FetchType.LAZY)
Expand Down

0 comments on commit 2ee9f4a

Please sign in to comment.