MySQL is one of many DBS's. Because of this CakePHP doesn't support Enums. So what do you do?
You have to support it on your own, FORTUNATELY it's not too tough. First thing lets grab our enum values and punch them into an array.
<?
$myValues = $this->ModelName->getColumnType('enum_values');
preg_match_all("/'(.*?)'/", $myValues, $enums);
<?
$enum = $enums[1];
$this->set(compact('enum'));
<?
echo $this->Form->input('enum_values',array('type'=>'select','options'=>$enum));
Complete. Now you should have a dropdown menu of options pulled straight out of our enum column!
ENJOY!