Skip to content

Commit

Permalink
Merge pull request #87 from Hanaro-trip-together-bank/feature/account
Browse files Browse the repository at this point in the history
fix: 계좌번호 14자리 지정
  • Loading branch information
mummhy0811 authored May 31, 2024
2 parents a6b8c61 + 7f12682 commit 6dc9d4d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class Account {
@JoinColumn(name = "member_idx", nullable = false)
private Member member;

@Column(nullable = false, length = 255)
@Column(nullable = false, length = 14)
private String accNumber;

@Column(nullable = false, precision = 20, scale = 2)
Expand Down

0 comments on commit 6dc9d4d

Please sign in to comment.