Using hibernate with Oracle db 11g express edition release 2.
When using the annotation @Versioned for a table "Organizations" for example,
hibernate seems to try to create a table Public.Organizations_versions with some columns.
The problem is that some of those columns (_revision, _revision_type) start with an underscore
and Oracle db does not allow creating a table with columns who start with underscore.
Any solutions ?
Thanks.