2010-10-26 13:21:15 +00:00
|
|
|
<?php
|
|
|
|
class Application_Model_CommandesPieces extends Zend_Db_Table_Abstract
|
|
|
|
{
|
|
|
|
protected $_name = 'commandes_pieces';
|
2010-10-27 09:31:17 +00:00
|
|
|
|
|
|
|
protected $_referenceMap = array(
|
|
|
|
'CommandesPieces' => array(
|
|
|
|
'columns' => array('commande_id'),
|
|
|
|
'refTableClass' => 'Application_Model_Commandes',
|
|
|
|
'refColumns' => array('id'),
|
|
|
|
),
|
|
|
|
);
|
2010-10-26 13:21:15 +00:00
|
|
|
}
|