Skip to content

Commit

Permalink
hotfix : chatroom 엔티티에서 record 연관관계 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
oosedus committed Nov 20, 2024
1 parent 56d339a commit f7df0d1
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ public class ChatRoom extends BaseEntity {
@OneToMany(mappedBy = "chatRoom", cascade = CascadeType.ALL, orphanRemoval = true, fetch = FetchType.LAZY)
private List<Chat> chatList;

@OneToOne(mappedBy = "chatRoom")
private Record record;

@ManyToOne
@JoinColumn(name = "user_id", nullable = false)
private User user;
Expand Down

0 comments on commit f7df0d1

Please sign in to comment.