Is it possible to run the task quot;symfony doctrine build --allquot; on only one table?(是否可以运行任务“symfony dictionary build --all?只有一张桌子?)
问题描述
如果我运行以下任务,它会构建所有内容并清除数据库:
If I run the folowing task, it builds everything and wipes out the database:
php symfony doctrine build --all
我希望这个任务只为我放入 schema.yml 的新表运行
I would like this task to run only for the new table that I've put in schema.yml
有可能吗?
推荐答案
我认为你应该为此使用迁移.
I think you should use migration for that.
首先,您需要恢复初始状态(当模式、模型和数据库同步时).从 schema.yml 中删除您的更改,重建您的模型 php symfony 学说:build --all-classes
并导入原始数据库.
First, you need to restore the initial state (when schema, model and db are in sync). Remove your changes form schema.yml rebuild your model php symfony doctrine:build --all-classes
and import the original database.
然后在 schema.yml 中进行更改并运行以下命令:
After that make your changes in schema.yml and run these commands:
php symfony doctrine:generate-migrations-diff
php symfony doctrine:migrate
php symfony doctrine:build --all-classes
这篇关于是否可以运行任务“symfony dictionary build --all"?只有一张桌子?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:是否可以运行任务“symfony dictionary build --all"?只有一张桌子?
基础教程推荐
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01