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

14 lines
227 B
PHP
Executable file

<?php
class ProductCategory extends AppModel {
var $name = 'ProductCategory';
var $hasMany = array('Product'=>array('className'=>'Product',
'foreignKey'=>'product_category_id'));
}
?>