I am applying Hibernate envers for already existing Hibernate project.
I am Tracking entity changes at property level, which creates columns with the properties names with a suffix of _MOD by default, then i am getting exception like "identifier is too long" because property name has too many characters. For me its not possible to change the property name now. So is there any other way to manually define the MOD column name along with @Audited(withModifiedFlag=true).
I'm afraid custom _MOD column names (per-column) aren't supported.
Adam