You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This annotation used within org.ametiste.routine.infrastructure.persistency.jpa.data to define foreign key names, cos @JoinColumn and @CollectionTable argument foreignKey is broken.
According to this issue on hibernate https://hibernate.atlassian.net/browse/HHH-8862, one possible solution until Hibernate 6.0 is deprecated @org.hibernate.annotations.ForeignKey annotation.
So, after Hibernate 6.0 release it should be removed and only JPA annotations must be used to define foreign key names.
The text was updated successfully, but these errors were encountered:
This annotation used within
org.ametiste.routine.infrastructure.persistency.jpa.data
to define foreign key names, cos@JoinColumn
and@CollectionTable
argumentforeignKey
is broken.According to this issue on hibernate https://hibernate.atlassian.net/browse/HHH-8862, one possible solution until Hibernate 6.0 is deprecated
@org.hibernate.annotations.ForeignKey
annotation.So, after Hibernate 6.0 release it should be removed and only JPA annotations must be used to define foreign key names.
The text was updated successfully, but these errors were encountered: