|
AFFECTED VERSION
WORKAROUND
PROBLEM
EnversSchemaGenerator generated Audit tables with Enumerated.ORDINAL instead of String for Audit Tables ONLY.
Example
Hibernate annotation mapping:
@Enumerated(EnumType.STRING) private AttachmentDirection direction;
Generated SQL:
create table ATTACHMENTS ( .. direction varchar(255),
create table ATTACHMENTS_AUD ( .. direction integer,
|