dropForeign(['location']); $table->renameColumn('location', 'location_id'); $table->foreign('location_id')->references('id')->on('locations'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('nodes', function (Blueprint $table) { $table->dropForeign(['location_id']); $table->renameColumn('location_id', 'location'); $table->foreign('location')->references('id')->on('locations'); }); } }