mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-22 02:58:05 +00:00
HHH-13191 - Fix test using a table-name that wasn't compliant across dialects.
This commit is contained in:
parent
53c589a9e1
commit
b66f548b5f
@ -23,6 +23,7 @@
|
||||
import javax.persistence.OneToMany;
|
||||
|
||||
import org.hibernate.cfg.AvailableSettings;
|
||||
import org.hibernate.envers.AuditJoinTable;
|
||||
import org.hibernate.envers.Audited;
|
||||
import org.hibernate.envers.test.BaseEnversJPAFunctionalTestCase;
|
||||
import org.hibernate.envers.test.Priority;
|
||||
@ -155,6 +156,7 @@ public static class AuthClient {
|
||||
|
||||
@OneToMany(cascade = CascadeType.ALL)
|
||||
@JoinColumn(name = "idclient")
|
||||
@AuditJoinTable(name = "AuthClient_AuthUser_AUD")
|
||||
private List<AuthUser> authUsers = new ArrayList<>();
|
||||
|
||||
public AuthClient() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user