Skip to content

Commit

Permalink
Merge pull request #48 from max2023-4th-project-01/feat/category-recomm
Browse files Browse the repository at this point in the history
URL 길이 제한
  • Loading branch information
sudago authored Sep 11, 2023
2 parents 10a4f1d + 12e7ca6 commit 279605c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion be/src/main/java/kr/codesquad/image/entity/Image.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class Image {
private Long id;
@Column(nullable = false)
private Long itemId;
@Column(nullable = false, length = 200)
@Column(nullable = false, length = 1000)
private String url;

@Builder
Expand Down
2 changes: 1 addition & 1 deletion be/src/main/java/kr/codesquad/item/entity/Item.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class Item extends TimeStamped {
private Long locationId;
@Column(nullable = false, length = 45)
private String locationName;
@Column(nullable = false, length = 200)
@Column(nullable = false, length = 1000)
private String thumbnailUrl;
@Column(nullable = false, length = 45)
private ItemStatus status;
Expand Down
2 changes: 1 addition & 1 deletion be/src/main/java/kr/codesquad/user/entity/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class User {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@Column(length = 200)
@Column(length = 1000)
private String profileImageUrl;
@Column(nullable = false, length = 45, unique = true)
private String loginId;
Expand Down

0 comments on commit 279605c

Please sign in to comment.