Skip to content

Commit

Permalink
remove EAGER ROLE
Browse files Browse the repository at this point in the history
  • Loading branch information
InBackSu committed Jan 1, 2024
1 parent 6b2988f commit c5b8a7b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ public class Member implements GrantedAuthority {
@Column(columnDefinition = "VARCHAR(80)", nullable = false)
private String role;

@OneToMany(fetch = FetchType.EAGER)
@OneToMany
@JoinColumn(name = "consulting_id")
private List<Consulting> consulting;

@OneToMany(fetch = FetchType.EAGER)
@OneToMany
@JoinColumn(name = "diary_id")
private List<Diary> diaries;

Expand Down

0 comments on commit c5b8a7b

Please sign in to comment.