Fix the last type

...hopefully
This commit is contained in:
Elias Schriefer 2024-07-08 16:57:42 +02:00
parent 3b252fb2cb
commit 0faefe6a9f

View File

@ -20,7 +20,7 @@ public class Category {
private String name; private String name;
@Lazy @Lazy
@OneToMany(mappedBy = "categorie") @OneToMany(mappedBy = "category")
private List<Dataset> datasets; private List<Dataset> datasets;
public Category(String name) { public Category(String name) {