kinspire / branches / master / models / status.php

history
<?php
class Status extends AppModel {

	var $name = 'Status';

	//The Associations below have been created with all possible keys, those that are not needed can be removed
	var $hasMany = array(
			'TaskChange' => array('className' => 'TaskChange',
								'foreignKey' => 'status_id',
								'dependent' => false
			)
	);

}
?>