Blame | Last modification | View Log | RSS feed
<?phpApp::uses('AppModel', 'Model');/*** Device Model** @property User $User*/class Device extends AppModel {//The Associations below have been created with all possible keys, those that are not needed can be removed/*** belongsTo associations** @var array*/public $belongsTo = array('User' => array('className' => 'User','foreignKey' => 'user_id','conditions' => '','fields' => '','order' => ''));}