TreeLeaf.php 371 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?php
class TreeLeaf extends Doctrine_Record
{
    public function setTableDefinition()
    {
    	$this->hasColumn('name', 'string');
        $this->hasColumn('parent_id', 'integer');
    }
    public function setUp() 
    {
        $this->hasOne('TreeLeaf as Parent', 'TreeLeaf.parent_id');
        $this->hasMany('TreeLeaf as Children', 'TreeLeaf.parent_id');
    }
}