I am facing some troubles while updating a table row.
Here is my code
$product = ProductTable::getInstance()->find($product_id);
$product->setQunatity(($product->getQunatity() - $qty));
$product->setSellingQty(($product->getSellingQty() + $qty));
$product->save();
Here symfony automatically update the updated_by field. But I don't want to update that particular field.
Is this is possible in symfony 1.4 . I am using Diem Project 5
Or only super admin can execute those code.
Thanks in advance.