cmc-sales/models/contact_category.php
Karl Cordes 4347aee5f0 Changes
2009-11-04 17:12:12 +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'));
}
?>