Skip to content

Commit 3f3ecab

Browse files
committed
fix: birthDate 필드의 컬럼 이름을 'birth_date'로 변경
1 parent b44cce2 commit 3f3ecab

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

  • apps/commerce-api/src/main/java/com/loopers/domain/user

apps/commerce-api/src/main/java/com/loopers/domain/user/User.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ public class User extends BaseEntity {
2828
private Email email;
2929

3030
@Embedded
31+
@AttributeOverride(name = "value", column = @Column(name = "birth_date", nullable = false, length = 10))
3132
private BirthDate birthDate;
3233

3334
@Enumerated(EnumType.STRING)

0 commit comments

Comments
 (0)