forge->addColumn('doctor_bookings', [ 'created_by' => [ 'type' => 'INT', 'constraint' => 11, 'unsigned' => false, 'null' => true, 'after' => 'status', ], ]); } public function down() { $this->forge->dropColumn('doctor_bookings', 'created_by'); } }