webservice/application/models/CommandesPieces.php
2010-10-28 13:05:56 +00:00

13 lines
330 B
PHP

<?php
class Application_Model_CommandesPieces extends Zend_Db_Table_Abstract
{
protected $_name = 'commandes_pieces';
protected $_referenceMap = array(
'CommandesPieces' => array(
'columns' => array('commande_id'),
'refTableClass' => 'Application_Model_Commandes',
'refColumns' => array('id'),
),
);
}