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

19 lines
388 B
PHP
Executable file

<?php
class Box extends AppModel {
var $name = 'Box';
var $validate = array(
'shipment_id' => array('numeric')
);
//The Associations below have been created with all possible keys, those that are not needed can be removed
var $belongsTo = array(
'Shipment' => array(
'className' => 'Shipment',
'foreignKey' => 'shipment_id',
'counterCache' => 'box_count'
)
);
}
?>