cakephp - Cake Bake error -


i trying use cakes baking console , when use cake bake model all

i getting following error

enter image description here

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; 

rather baking @ once, table-by-table , model-controller-view separately. way you'll able pin down error.

have created fixtures correctly? see http://book.cakephp.org/view/360/creating-fixtures , check syntax correct, particularly in array definitions.


Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -