I have parent-child mapping in hibernate where the entities are connected through table.
The problem is that column automatically created by hibernate in this table is called like "_actions_id"
. But I use Oracle and it says that column name "_actions_id"
is invalid.
It works fine when I wrap the name with ""
and execute the script manually, but is there a way to make hibernate to wrap all columns with ""
?