Hi
Is it possible to define the pk constraint name?
Im able to define the pk column, but the constraint names always look like "SYS_C0010022", Is there some kind of possibility to configure this constraint name?
Im only able to find configuration settings for index / uniques but it seems like im to blind to find a possibility to define the pk constraint.
thx for your help
cybi
Hibernate version: 3.0.5
Mapping documents:
<class name="Example" table="EXAMPLE">
<cache usage="read-write"/>
<id name="id">
<generator class="seqhilo">
<param name="sequence">hi_value</param>
<param name="max_lo">100</param>
</generator>
</id>
...
|