2007-09-02 18:24:49 +04:00
|
|
|
<?php
|
|
|
|
class RelationTest extends Doctrine_Record
|
|
|
|
{
|
|
|
|
public function setTableDefinition()
|
|
|
|
{
|
|
|
|
$this->hasColumn('name', 'string', 200);
|
2007-09-05 08:42:02 +04:00
|
|
|
$this->hasColumn('parent_id', 'integer');
|
2007-09-02 18:24:49 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-03 00:05:48 +04:00
|
|
|
class RelationTestChild extends RelationTest
|
|
|
|
{
|
|
|
|
public function setUp()
|
|
|
|
{
|
2007-09-05 08:42:02 +04:00
|
|
|
$this->hasOne('RelationTest as Parent', array(
|
|
|
|
'local' => 'parent_id',
|
|
|
|
'foreign' => 'id',
|
|
|
|
'onDelete' => 'CASCADE',
|
|
|
|
));
|
|
|
|
$this->hasMany('RelationTestChild as Children', array(
|
|
|
|
'local' => 'id',
|
|
|
|
'foreign' => 'parent_id',
|
|
|
|
));
|
2007-09-03 00:05:48 +04:00
|
|
|
}
|
|
|
|
}
|