2011-04-20 00:44:13 -07:00
|
|
|
<?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',
|
2011-04-28 21:33:36 -07:00
|
|
|
'counterCache' => 'box_count'
|
2011-04-20 00:44:13 -07:00
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
?>
|