Is there a possibility to set up a default type "conversion", that timestamp always is BinaryBlob?
eg.: automatic mapping creation:
Code: Select all
<version name="Recordversion" type="Byte[]">
<column name="recordversion" not-null="true" sql-type="timestamp" />
</version>
Code: Select all
<version name="RecordVersion" type="BinaryBlob" generated="always">
<column name="recordversion" sql-type="timestamp"/>
</version>
Gabriele