sancus%off.net 73904091fe initial import of models and other app files
git-svn-id: svn://10.0.0.236/trunk@207393 18797224-902f-48f8-a5cc-f745e15eee43
2006-08-14 23:54:58 +00:00

18 lines
591 B
PHP

<?php
class Platform extends AppModel
{
var $name = 'Platform';
var $hasMany = array('File' =>
array('className' => 'File',
'conditions' => '',
'order' => '',
'limit' => '',
'foreignKey' => 'platform_id',
'dependent' => true,
'exclusive' => false,
'finderSql' => ''
)
);
}
?>