31 lines
586 B
PHP
31 lines
586 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* This class has been auto-generated by the Doctrine ORM Framework
|
||
|
*/
|
||
|
abstract class BaseChild extends Doctrine_Record
|
||
|
{
|
||
|
|
||
|
public function setTableDefinition()
|
||
|
{
|
||
|
$this->setTableName('child');
|
||
|
$this->hasColumn('id', 'integer', 11, array('primary' => true,
|
||
|
'autoincrement' => true));
|
||
|
|
||
|
$this->hasColumn('name', 'string', 255);
|
||
|
$this->hasColumn('adult_id', 'integer', 11);
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
public function setUp()
|
||
|
{
|
||
|
$this->hasOne('Adult', array('local' => 'adult_id',
|
||
|
'foreign' => 'id'));
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|