mavinoo / laravelBatch

insert batch and update batch in laravel
MIT License
564 stars 118 forks source link

Disable backtick when incrementing #95

Closed JoaoFSCruz closed 1 year ago

JoaoFSCruz commented 1 year ago

Incrementing/decrementing is not working for PostgresSQL, so this would not work:

$value = [
     [
         'id' => 1,
         'balance' => ['+', 500],
     ],
];