Fixed warning/error due to difference in name resolution between IntelliJ and Hibernate.

This commit is contained in:
Andreas Svanberg 2024-04-26 10:07:54 +02:00
parent f5950a43ba
commit aa469a425b

@ -49,6 +49,7 @@ public class UserProfile extends DomainObject {
@ManyToMany
@JoinTable(
name = "user_profile_projecttype",
joinColumns = {@JoinColumn(name = "user_profile_id")}
)
private Collection<ProjectType> defaultProjectTypeFilter = new ArrayList<>();