SelfRefTest.php 329 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?php
class SelfRefTest extends Doctrine_Record
{
    public function setTableDefinition() 
    {
        $this->hasColumn('name', 'string', 50);
        $this->hasColumn('created_by', 'integer');
    }
    public function setUp()
    {
        $this->hasOne('SelfRefTest as createdBy', array('local' => 'created_by'));
    }
}