feat: fix jovo test

This commit is contained in:
s-prechtl 2024-04-02 02:35:36 +02:00
parent 6d86e3b7c0
commit 987ff83e90

View file

@ -20,7 +20,7 @@ public class Cart {
@Column(nullable = false) @Column(nullable = false)
private Boolean checkedOut = false; private Boolean checkedOut = false;
@OneToMany(mappedBy = "cart") @OneToMany(mappedBy = "cart", cascade = CascadeType.ALL)
@Column @Column
private List<CartEntry> cartEntries; private List<CartEntry> cartEntries;