验证和更新架构后,不会执行表

时间:2013-08-27 14:42:14

标签: zend-framework doctrine-orm doctrine zend-framework2

我使用doctrine 2在zend框架2中创建了实体。之后我使用此命令验证当前架构。

./vendor/bin/doctrine-module orm:validate-schema

我的输出如下:

Mapping]  OK - The mapping files are correct.
[Database] FAIL - The database schema is not in sync with the current mapping file.

然后我执行了更新命令,

./vendor/bin/doctrine-module orm:schema-tool:update --force

输出就像:

Database schema updated successfully! "7" queries were executed

但问题是,我的数据库中没有创建表。这有什么问题?

1 个答案:

答案 0 :(得分:0)

我曾经运行 doctrine-module orm:validate-schema ,然后运行 doctrine-module orm:schema-tool:create 。 这是一个很好的项目: Fmi-example on github