我使用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
但问题是,我的数据库中没有创建表。这有什么问题?
答案 0 :(得分:0)
我曾经运行 doctrine-module orm:validate-schema ,然后运行 doctrine-module orm:schema-tool:create 。 这是一个很好的项目: Fmi-example on github