Aquí hay 2 formas diferentes
knex('item').increment('qtyonhand').where('rowid',8)
o
knex('item').update({
qtyonhand: knex.raw('?? + 1', ['qtyonhand'])
}).where('rowid',8)
Aquí hay 2 formas diferentes
knex('item').increment('qtyonhand').where('rowid',8)
o
knex('item').update({
qtyonhand: knex.raw('?? + 1', ['qtyonhand'])
}).where('rowid',8)