renameColumn('component', 'component_id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('incidents', function (Blueprint $table) { $table->renameColumn('component_id', 'component'); }); } }