Hi
I'm facing another issue after upgrading to Hibernate 5.2.8
When running my app I find that auto ddl is creating new audit tables with suffix _aud. This happens because it doesn't recognise the
Code:
_AUD
already there
So I set property
Code:
org.hibernate.envers.audit_table_suffix: _AUD
and it continues to fail. I then try to set it to any other name with UpperCase, and it just translates them to lowercase
At a last attempt to solve this I change naming strategy to:
Code:
ImprovedNamingStrategy
, with no results
Is there a lower-uppercase setting in hibernate that I've failed to find in jboss docs?
Also it doesn't seem to make much sense, provided that in
https://docs.jboss.org/hibernate/orm/5.2/javadocs/ it says that suffix defaults to _AUD with uppercase
EDIT to include latest test:
I also tried to annotate an entity with
Code:
@AuditTable("apiAUDITtable")
Once again, the table was named all in lowercase