Skip to content

Commit

Permalink
fix: storevisit entity relations
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeongh00 committed Aug 5, 2024
1 parent 215aab3 commit cc566df
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 StoreVisit extends BaseEntity {
@JoinColumn(name = "user_id")
private User user;

@OneToOne(fetch = FetchType.LAZY)
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "store_id")
private Store store;

Expand Down

0 comments on commit cc566df

Please sign in to comment.