12

我在 Symfony2 项目中添加了一些数据库表。然后,我使用了以下命令:

php app/console doctrine:generate:entities Acme

更新课程。然后,我尝试使用以下命令更新 MySQL 数据库:

php app/console doctrine:schema:update --force

但是,我收到以下错误消息

[PDOException]                                                                              
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; 
check the manual that corresponds to your MySQL server version for the right syntax to use near
'like TINYINT(1) NOT NULL, created_at DATETIME NOT NULL, INDEX IDX_8EA4B675A76ED3' at line 1  

如何查看哪个 SQL 查询错误?自动生成的 SQL 查询放在哪里?

提前致谢。

4

1 回答 1

34

php app/console doctrine:schema:update --dump-sql

于 2012-04-22T09:46:00.320 回答