CakePHP 4 中的迁移无法正常工作?

Migrations in CakePHP 4 not working correctly?

我是 运行 全新安装的 CakePHP 4,我正在尝试为数据库创建初始迁移。迁移本身已正确构建,但命令无法将迁移标记为已完成:

~/code$ bin/cake bake migration_snapshot Initial

Creating file /home/vagrant/code/config/Migrations/20200125204245_Initial.php
Wrote `/home/vagrant/code/config/Migrations/20200125204245_Initial.php`
Marking the migration 20200125204245_Initial as migrated...
Exception: Shell class for "Migrations" could not be found. If you are trying to use a plugin shell, that was loaded via $this->addPlugin(), you may need to update bin/cake.php to match https://github.com/cakephp/app/tree/master/bin/cake.php
In [/home/vagrant/code/vendor/cakephp/cakephp/src/Console/ShellDispatcher.php, line 332]

由于迁移已成功创建,我很确定插件已正确安装,但不知何故 Bake 无法访问它?

安装的版本是:

显然这是一个错误,并且已经创建了一个问题:

https://github.com/cakephp/bake/issues/638