forge->modifyColumn('patient', [ 'Gender' => ['name' => 'Sex', 'type' => 'INT', 'constraint' => 11, 'null' => true], ]); } public function down() { $this->forge->modifyColumn('patient', [ 'Sex' => ['name' => 'Gender', 'type' => 'INT', 'constraint' => 11, 'null' => true], ]); } }