2007-09-02 18:24:49 +04:00
|
|
|
<?php
|
|
|
|
class Rec1 extends Doctrine_Record
|
|
|
|
{
|
|
|
|
public function setTableDefinition()
|
|
|
|
{
|
|
|
|
$this->hasColumn('first_name', 'string', 128, array ());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
2008-01-23 11:04:54 +03:00
|
|
|
$this->hasOne('Rec2 as Account', array('local' => 'id', 'foreign' => 'user_id'));
|
2007-09-02 18:24:49 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|