蛋糕烘烤错误
我正在尝试使用蛋糕烘焙控制台,当我使用蛋糕烘焙模型时,
我收到以下错误
考勤表结构
CREATE TABLE IF NOT EXISTS `mydb`.`attendences` (
`id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT ,
`dateTime` DATETIME NULL ,
PRIMARY KEY (`id`) )
ENGINE = InnoDB;
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;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要一次性烘焙所有内容,而是逐个表和模型控制器视图单独进行。这样您就能够确定错误。
您是否正确创建了任何装置?请参阅http://book.cakephp.org/view/360/Creating-fixtures 并检查语法是否正确,特别是在数组定义中。
Rather than baking it all at once, do it table-by-table and model-controller-view separately. That way you'll be able to pin down the error.
Have you created any fixtures correctly? See http://book.cakephp.org/view/360/Creating-fixtures and check the syntax is correct, particularly in the array definitions.