2013-01-15 14:56:32 +00:00
|
|
|
<?php
|
|
|
|
class Application_Model_Sdv1Utilisateurs extends Zend_Db_Table_Abstract
|
|
|
|
{
|
|
|
|
protected $_name = 'utilisateurs';
|
2013-02-21 17:03:56 +00:00
|
|
|
protected $_schema = 'sdv1';
|
|
|
|
protected $_referenceMap = array(
|
2013-03-21 09:27:34 +00:00
|
|
|
'Client' => array(
|
2013-02-21 17:03:56 +00:00
|
|
|
'columns' => 'idClient',
|
|
|
|
'refTableClass' => 'Sdv1Clients',
|
|
|
|
'refColumns' => 'id'
|
2013-03-21 09:27:34 +00:00
|
|
|
),
|
2013-09-26 09:41:13 +00:00
|
|
|
'ServiceCode' => array(
|
2013-03-21 09:27:34 +00:00
|
|
|
'columns' => 'login',
|
2013-09-26 09:41:13 +00:00
|
|
|
'refTableClass' => 'Sdv1ClientsServicesUsers',
|
2013-03-21 09:27:34 +00:00
|
|
|
'refColumns' => 'login'
|
2013-02-21 17:03:56 +00:00
|
|
|
),
|
|
|
|
);
|
2013-01-15 14:56:32 +00:00
|
|
|
}
|