Fix erroneous annotation on Category mapping
Signed-off-by: William Brawner <me@wbrawner.com>
This commit is contained in:
parent
65c25f9db9
commit
745cf38815
1 changed files with 0 additions and 1 deletions
|
@ -14,7 +14,6 @@ public class Category implements Comparable<Category> {
|
|||
private final Long id = null;
|
||||
private String title;
|
||||
private String description;
|
||||
@JoinColumn(nullable = false)
|
||||
@OneToMany(mappedBy = "category", fetch = FetchType.EAGER)
|
||||
private final Set<CategoryAmount> amounts = new HashSet<>();
|
||||
@JoinColumn(nullable = false)
|
||||
|
|
Loading…
Reference in a new issue