Skip to content

Commit

Permalink
fix: 파일을 못찾는 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Arachneee committed Jul 20, 2024
1 parent 765f481 commit acd415e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class BillAction {
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;

@OneToOne(fetch = FetchType.LAZY, cascade = CascadeType.ALL)
@OneToOne(fetch = FetchType.LAZY, cascade = CascadeType.ALL, orphanRemoval = true)
private Action action;

private String title;
Expand Down

0 comments on commit acd415e

Please sign in to comment.