cmc-sales/models/document_attachment.php

29 lines
582 B
PHP
Raw Normal View History

2012-11-18 12:19:55 -08:00
<?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' => ''
)
);
}
?>