Skip to content

Commit

Permalink
Fix: Change data type of SocialMember's id
Browse files Browse the repository at this point in the history
Resolves: #4
  • Loading branch information
jiwon83 committed Sep 15, 2024
1 parent 324150c commit 22e2a64
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
public class SocialMember {
@Id
@Column(name = "member_id")
private int id;
private Long id;

@MapsId
@OneToOne(fetch = FetchType.LAZY)
Expand Down

0 comments on commit 22e2a64

Please sign in to comment.