Skip to content

Commit

Permalink
Feat: 회원 프로필 이력 Entity
Browse files Browse the repository at this point in the history
- 회원 ID, Email 컬럼 수정
  • Loading branch information
HiSeungmin committed Jan 3, 2025
1 parent ea929a2 commit 9924f78
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,11 @@ public class MemberProfileHistory extends BaseEntity {
@Column(name = "id")
private Long id; // 회원 프로필 이력 ID

@Column(name = "member_id", nullable = false)
private Long memberId; // 회원 ID

@Column(name = "member_email", nullable = false)
private Long memberEmail; // 회원 이메일
private String memberEmail; // 회원 이메일

@Column(name = "company_id", nullable = false)
private Long companyId; // 회사 ID
Expand Down

0 comments on commit 9924f78

Please sign in to comment.