I am trying to create a new row property with a default value:
<cfproperty fieldtype="column" name="showIn" ormtype="string" default="credentials" notnull="true" required="false" />
After ORMReload (), the column is present in the database, but without a default value.
I expect:
showIn VARCHAR (255) NOT NULL DEFAULT "credentials"
I get:
showIn VARCHAR (255) NOT NULL
I am using MySQL 5.1.63 and ColdFusion 9. (Adobe)
Did I miss something?
source share