cmc-sales/app/models/document_attachment.php
2013-03-23 16:25:52 +11:00

29 lines
582 B
PHP

<?php
class DocumentAttachment extends AppModel {
var $name = 'DocumentAttachment';
var $useTable = 'document_attachments';
//The Associations below have been created with all possible keys, those that are not needed can be removed
var $belongsTo = array(
'Document' => array(
'className' => 'Document',
'foreignKey' => 'document_id',
'conditions' => '',
'fields' => '',
'order' => ''
),
'Attachment' => array(
'className' => 'Attachment',
'foreignKey' => 'attachment_id',
'conditions' => '',
'fields' => '',
'order' => ''
)
);
}
?>