$column =
$this->db->
protectIdentifiers($column);
if ($this->castTextToInt
) { $values =
[$column => "CONVERT(VARCHAR(MAX),CONVERT(INT,CONVERT(VARCHAR(MAX), {
$column})) + {
$value})"
];
} else { $values =
[$column => "{
$column} + {
$value}"
];
} $sql =
$this->
_update($this->QBFrom
[0
],
$values);
if (!
$this->testMode
) { $this->
resetWrite();
return $this->db->
query($sql,
$this->binds, false
);
} return true;
} /**
* Decrements a numeric column by the specified value.
*
* @return bool
*/