i am trying to use cakes baking console and when i use cake bake model all
i am getting the following error

Attendance Table Structure
CREATE TABLE IF NOT EXISTS `mydb`.`attendences` (
`id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT ,
`dateTime` DATETIME NULL ,
PRIMARY KEY (`id`) )
ENGINE = InnoDB;
attendances table- IshdateTimecolumn name should bedatetimeordate_timeas per CakePHP conventions ( book.cakephp.org/view/903/Model-and-Database-Conventions ). Change it and retry. - Ish