1

菲尼克斯--configuration选项发生了什么?我工作中的一个项目依赖于它。

phinx docs:如果--configuration给出命令行选项,Phinx 将加载指定的文件。否则, ...

但是当我运行时:

$ ./vendor/bin/phinx --configuration=my_config.php

  The "--configuration" option does not exist.

也不--version返回版本号。

Phinx by CakePHP - https://phinx.org.
4

1 回答 1

0

原来migrate在脚本中添加一个解决了这个问题,现在它运行良好。

../vendor/bin/phinx migrate --configuration=my_config.php

我猜在某些时候它假设如果您在没有要迁移的迁移的情况下运行它仍然允许您为它传递选项。

于 2020-03-31T15:00:18.953 回答