Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Cakephp3 进行迁移,我想回滚特定的迁移,我知道如何使用以下方式回滚以前的迁移:
bin/cake migrations rollback
但我找不到回滚特定迁移的方法。
注意:我正在使用phinx插件进行数据库迁移。
phinx
最后我得到了答案,
开始了
bin/cake migrations rollback -t <version>
无论如何感谢SO :)