Skip to content

Commit

Permalink
fix: imageUrl 길이 제한 변경 (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
pushedrumex authored Feb 22, 2024
1 parent 1e28f53 commit 263fff2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/verby/indp/domain/store/StoreImage.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class StoreImage {
private Store store;

@Getter
@Column(name = "image_url")
@Column(name = "image_url", length = 10000)
private String imageUrl;

public StoreImage(Store store, String imageUrl) {
Expand Down

0 comments on commit 263fff2

Please sign in to comment.