webservice/library/Application/Model/CommandesPieces.php
2014-03-07 08:13:41 +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'),
),
);
}