https://book.cakephp.org/3.0/en/phinx/migrations.html#working-with-columns ```php addColumn('ida','integer'); $table->addColumn('idb','integer'); $table->removeColumn('idb'); $table->save(); Wrapper::commit(); ```