18 lines
591 B
PHP
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' => ''
|
|
)
|
|
);
|
|
}
|
|
?>
|