ORM and Dates? You probably want timestamp
Data types for dates and times are slightly different across databases which often makes life difficult for us developers. ColdFusion ORM makes this pretty simple:
- For a date with time use ormtype="timestamp"
- Just a date use ormtype="date"
There are no other options!
Full example with the property tag:
1property name="aFullDateWithTime" ormtype="timestamp";
2property name="justADate" ormtype="date";
2property name="justADate" ormtype="date";

You can set the database to use timestamp on the column.
You can use the optimistic locking:
http://help.adobe.com/en_US/ColdFusion/9.0/Develop...
And set
property name="lastModified" fieldtype="timestamp";
You could also look into the DDL options:
http://help.adobe.com/en_US/ColdFusion/9.0/Develop...