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

14 lines
227 B
PHP
Executable file

<?php
class ContactCategory extends AppModel {
var $name = 'ContactCategory';
var $hasMany = array('Contact'=>array('className'=>'Contact',
'foreignKey'=>'contact_category_id'));
}
?>