FooForeignlyOwnedWithPK.php 287 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
<?php
class FooForeignlyOwnedWithPk extends Doctrine_Record
{
    public function setTableDefinition()
    {
        $this->hasColumn('name', 'string', 200);
    }
    public function setUp()
    {
10
        //$this->hasOne('FooRecord', array('local' => 'id', 'foreign' => 'id'));
11 12
    }
}