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