dropForeign(['city_id']); $table->integer('city_id')->nullable()->change(); }); Schema::table('cities', function (Blueprint $table) { $table->dropForeign(['id']); }); } /** * Reverse the migrations. * * @return void */ public function down() { // } }