1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/models/RelationTest.php

26 lines
612 B
PHP
Raw Normal View History

<?php
class RelationTest extends Doctrine_Record
{
public function setTableDefinition()
{
$this->hasColumn('name', 'string', 200);
$this->hasColumn('parent_id', 'integer');
}
}
class RelationTestChild extends RelationTest
{
public function setUp()
{
$this->hasOne('RelationTest as Parent', array(
'local' => 'parent_id',
'foreign' => 'id',
'onDelete' => 'CASCADE',
));
$this->hasMany('RelationTestChild as Children', array(
'local' => 'id',
'foreign' => 'parent_id',
));
}
}