Hi, Anyone who have an address to an good example of onDelete. I saw this in the manual, but it doesn't show the whole process.
<?php
class BugsProducts extends Zend_Db_Table_Abstract
{
...
protected $_referenceMap = array(
'Product' => array(
'columns' => array('product_id'),
'refTableClass' => 'Products',
'refColumns' => array('product_id'),
'onDelete' => self::CASCADE,
'onUpdate' => self::RESTRICT
),
...
);
}
/Peter
