forge->addColumn('appointments', [ 'note' => [ 'type' => 'TEXT', 'null' => true, 'after' => 'status' ] ]); } public function down() { $this->forge->dropColumn('appointments', 'note'); } }