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

16 lines
296 B
PHP
Raw Normal View History

<?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'));
}
}