symfony 原则:build --all

发布于 2024-12-02 00:09:05 字数 226 浏览 0 评论 0原文

我已经开始学习symfony了,我有点困惑。在“实用 symfony”中,他们解释了 symfony 主义:build --modelsymfony 主义:build --sqlsymfony 主义: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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

淡淡的优雅 2024-12-09 00:09:05

build --all 包括

--model             Build model classes
--forms            Build form classes
--filters          Build filter classes
--sql              Build SQL
--db               Drop, create, and either insert SQL or migrate the database

build --all includes

--model             Build model classes
--forms            Build form classes
--filters          Build filter classes
--sql              Build SQL
--db               Drop, create, and either insert SQL or migrate the database
复古式 2024-12-09 00:09:05

您可以使用以下方法重新生成所有基类:

php symfony doctrine:build --all-classes

它重新生成模型类、表单和过滤器,而无需更改数据库。

在现有项目上,如果您必须更新架构和数据库,您应该发现 Doctrine 迁移的使用情况。

以下是一些有关它的幻灯片:http://www.slideshare。净/denderello/symfony-live-2010-using-doctrine-migrations

You can regenerate all your base classes using:

php symfony doctrine:build --all-classes

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文