symfony 原则:build --all
我已经开始学习symfony了,我有点困惑。在“实用 symfony”中,他们解释了 symfony 主义:build --model
、symfony 主义:build --sql
和 symfony 主义:insert-sql
但随后他们提到了 symfony 学说:build -all ,但没有解释此命令中包含哪些任务。
有人能给我建议吗?
I have started to learn symfony and I am a little bit confused. In 'practical symfony' they explain symfony doctrine:build --model
, symfony doctrine:build --sql
and symfony doctrine:insert-sql
but then they mention symfony doctrine:build -all
without explaining what tasks are included in this command.
Could anybody advice me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
build --all
包括build --all
includes您可以使用以下方法重新生成所有基类:
它重新生成模型类、表单和过滤器,而无需更改数据库。
在现有项目上,如果您必须更新架构和数据库,您应该发现 Doctrine 迁移的使用情况。
以下是一些有关它的幻灯片:http://www.slideshare。净/denderello/symfony-live-2010-using-doctrine-migrations
You can regenerate all your base classes using:
It regenerates model classes, forms and filters ones without changing your DB.
On an existing projet, if you have to update your schema and your DB, you should discover Doctrine migrations usage.
Here is some slides about it: http://www.slideshare.net/denderello/symfony-live-2010-using-doctrine-migrations