'Pacific Blue', 'internal_name' => 'pacific-blue', 'IATA_code' => 'DJ', 'ICAO_code' => 'PBN', 'active' => false, 'logo' => 'pacific-blue.png', 'country_id' => Country::where('code', 'NZ')->first()->id, ]); $flightIds = [326, 327]; UserFlight::whereIn('id', $flightIds)->update(['airline_id' => Airline::where('internal_name', 'pacific-blue')->first()->id]); } /** * Reverse the migrations. */ public function down(): void { // } };