Hi there,
I am having trouble finding out why this does not work. Executing the compile() statement generated on PHPMyAdmin works:
$update = \Fuel\Core\DB::update("message");
$update->where("message_id", "=", $message_id);
$update->set(array("message_spam" => $spam_status));
return $update->execute();