作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道我可以运行 bin/cake Migrations migrate --plugin MyPlugin
但是我在我的项目中使用了 50 多个插件并且我喜欢使用一个命令在所有插件中运行所有迁移这可能吗?
最佳答案
据我所知,没有用于为所有插件运行迁移的直接命令。但是,您可以组合一个简单的 Shell 脚本来执行此操作。
您可以使用以下方法检索应用程序的所有已加载插件的列表:-
$plugins = Plugin::loaded();
dispatchShell
为每个插件运行迁移。它允许您从另一个 Shell 运行命令:-
$this->dispatchShell(
'migrations',
'migrate',
'-p',
$plugin
);
dispatchShell
.
<?php
// src/Shell/InstallShell.php
namespace App\Shell;
use Cake\Console\Shell;
use Cake\Core\Plugin;
class InstallShell extends Shell
{
public function plugins()
{
$plugins = Plugin::loaded();
foreach ($plugins as $plugin) {
$this->dispatchShell(
'migrations',
'migrate',
'-p',
$plugin
);
}
}
}
$ bin/cake install plugins
.
关于cakephp - 如何在 cakephp 3 中运行所有插件的所有迁移?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42051557/
我是一名优秀的程序员,十分优秀!