task/3382: Correct JPA-mapping to defaultProjectTypeFilter in UserProfile.
This commit is contained in:
parent
9d9ee49b2c
commit
a9a2ee1631
@ -74,7 +74,9 @@ public class UserProfile extends DomainObject {
|
||||
|
||||
@ManyToMany
|
||||
@JoinTable(name = "user_profile_project_type",
|
||||
joinColumns = @JoinColumn(name = "user_profile_id", referencedColumnName = "id"))
|
||||
joinColumns = @JoinColumn(name = "user_profile_id", referencedColumnName = "id"),
|
||||
inverseJoinColumns = @JoinColumn(name = "project_type_id", referencedColumnName = "id")
|
||||
)
|
||||
private Collection<ProjectType> defaultProjectTypeFilter = new ArrayList<>();
|
||||
|
||||
@Override
|
||||
|
Loading…
x
Reference in New Issue
Block a user