Skip to content

Commit

Permalink
fix: modify password field length
Browse files Browse the repository at this point in the history
  • Loading branch information
jinlee1703 committed Oct 19, 2023
1 parent 5b4228d commit 3c8c2c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class Giftcard {
@Column(nullable = false)
private LocalDateTime expiresAt;

@Column(length = 4)
@Column(length = 60, nullable = false)
private String password;

@Builder
Expand Down

0 comments on commit 3c8c2c3

Please sign in to comment.