Symfony:学说:build --all --and-load 分解为单个命令?

发布于 2024-12-01 15:16:52 字数 239 浏览 2 评论 0原文

现在,在我的 Symfony 项目中,有一段时间我一直在使用以下命令来删除我的数据库,创建所有内容并重新加载我的所有装置...

./symfony doctrine:build --all --and-load

我想知道的是,个人 ./symfony 学说:whatever 命令这会分解为什么顺序?就像如果我想一次执行每个单独的命令来完成相同的结果,那么命令是什么?

With my Symfony projects now, for a while I've been using the following command to drop my database, create everything and reload all my fixtures...

./symfony doctrine:build --all --and-load

What I'm wondering, is what individual ./symfony doctrine:whatever commands does this break down to and in what order? Like if I wanted to execute each individual command one-at-a-time to accomplish the same result, what are the commands?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

情栀口红 2024-12-08 15:16:52

快速查看 sfDoctrineBuildTask 的源代码会告诉您以下内容:

doctrine:drop-db
doctrine:build-db
doctrine:build-model
doctrine:build-forms
doctrine:build-filters
doctrine:build-sql
doctrine:insert-sql
doctrine:data-load

A quick look at the source of sfDoctrineBuildTask would tell you the following:

doctrine:drop-db
doctrine:build-db
doctrine:build-model
doctrine:build-forms
doctrine:build-filters
doctrine:build-sql
doctrine:insert-sql
doctrine:data-load
清秋悲枫 2024-12-08 15:16:52

文档位于:http://www.symfony-project.org/参考/1_4/en/16-任务
在这里您可以阅读所有任务文档。

The documentation is here: http://www.symfony-project.org/reference/1_4/en/16-Tasks
Here you can read all task documentation.

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