where('IATA_code', 'CM') ->whereNull('ICAO_code') ->update(['logo' => '']); } /** * Reverse the migrations. */ public function down(): void { DB::table('airlines') ->where('IATA_code', 'CM') ->whereNull('ICAO_code') ->update(['logo' => 'CM.png']); } };