Skip to content

Commit

Permalink
[fix] 필드 타입 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
suhhyun524 committed Nov 24, 2023
1 parent 97576c9 commit 5d30390
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ public class Event extends BaseEntity {
private Category category;

@NotNull
private Integer price;
@Size(max = 20)
private String price;

@NotNull
private String url;
Expand All @@ -54,7 +55,7 @@ private Event(
Place place,
String name,
Category category,
Integer price,
String price,
String url,
LocalDateTime startDateTime,
LocalDateTime endDateTime
Expand Down

0 comments on commit 5d30390

Please sign in to comment.