kinspire / branches / master / models / severity.php

history
<?php
class Severity extends AppModel {

	var $name = 'Severity';

	//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' => 'severity_id',
								'dependent' => false
			)
	);

}
?>