diff --git a/update/2_4_23.php b/update/2_4_23.php index c9cb14f57..51de407c5 100644 --- a/update/2_4_23.php +++ b/update/2_4_23.php @@ -19,5 +19,8 @@ foreach ($fatture as $fattura) { // Completamento automatico informazioni IBAN per banche $banche = Banca::all(); foreach ($banche as $banca) { - $banca->save(); + try { + $banca->save(); + } catch (\PDOException $e) { + } }