[Toy Project - Neighbor] Account와 Member의 연관관계에 대해
Account와 Member
- email이 UK임에도 account_id를 PK 삼은 이유 : email은 바뀔 수 있기 때문에
@Entity
public class AccountEntity {
@Id
@GeneratedValue(strategy = jakarta.persistence.GenerationType.IDENTITY)
private Long accountId;
private String email;
private String password;
private boolean isEmailVerified;
private boolean isActive;
}
댓글남기기