feat: fix jovo test
This commit is contained in:
parent
6d86e3b7c0
commit
987ff83e90
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ public class Cart {
|
|||
@Column(nullable = false)
|
||||
private Boolean checkedOut = false;
|
||||
|
||||
@OneToMany(mappedBy = "cart")
|
||||
@OneToMany(mappedBy = "cart", cascade = CascadeType.ALL)
|
||||
@Column
|
||||
private List<CartEntry> cartEntries;
|
||||
|
||||
|
|
|
|||
Reference in a new issue