Skip to content

Commit

Permalink
refactor: place_image_url 필드 길이 제한 변경
Browse files Browse the repository at this point in the history
- 기존 : 255자 이내
- 변경 : 1024자 이내
  • Loading branch information
yeonjae02 committed Jul 31, 2024
1 parent b79157e commit be725be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ public class PlaceInfoV2 {
@Column(name = "place_address", nullable = false)
private String address;

@Column(name="place_image_url", nullable = false)
@Column(name="place_image_url", nullable = false, length=1024)
private String imageUrl;
}

0 comments on commit be725be

Please sign in to comment.