Magento collection delete all

Magento collection delete all. | Truncate magento table | Delete All Items from magento collection

You Can delete magento collection items as below.

         $collection    = Mage::getModel('yourcompany_yourmodule/yourmodel')->getCollection();    
         foreach( $collection as $item ){
                      $item->delete();
                }



Note : It will delete all the data from the collection.


Advertisements

Add Comment

📖 Read More