cmc-sales/php/app/models/industry.php

35 lines
501 B
PHP
Raw Normal View History

2011-06-27 17:13:31 -07:00
<?php
2009-07-05 18:25:53 -07:00
class Industry extends AppModel {
var $name = 'Industry';
2009-11-03 22:12:12 -08:00
2009-07-05 18:25:53 -07:00
var $hasAndBelongsToMany = array (
'Customer' => array(
'className' => 'Customer',
'joinTable' => 'industries_customers'
)
2009-07-05 18:25:53 -07:00
);
var $belongsTo = array (
'ParentIndustry' => array(
'className' => 'Industries',
'foreignKey' => 'parent_id'
)
);
var $hasMany = array (
'subIndustry' => array(
'className' => 'Industries',
'foreignKey' => 'parent_id',
'dependent' => true
)
);
2009-07-05 18:25:53 -07:00
}
2009-11-03 22:12:12 -08:00
?>