cmc-sales/models/industry.php

37 lines
575 B
PHP
Raw Normal View History

2009-07-05 18:25:53 -07:00
<?
class Industry extends AppModel {
var $name = 'Industry';
var $hasAndBelongsToMany = array (
'Customer' => array(
'className' => 'Customer',
'joinTable' => 'industries_customers'
// 'foreignKey' => 'industry_id',
// 'associationForeignKey' => 'customer_id'
)
);
var $belongsTo = array (
'ParentIndustry' => array(
'className' => 'Industries',
'foreignKey' => 'parent_id'
)
);
var $hasMany = array (
'subIndustry' => array(
'className' => 'Industries',
'foreignKey' => 'parent_id',
'dependent' => true
)
);
}
?>