1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/models/Rec1.php

12 lines
264 B
PHP
Raw Normal View History

<?php
class Rec1 extends Doctrine_Record
{
public static function initMetadata($class)
{
$class->setColumn('first_name', 'string', 128, array ());
$class->hasOne('Rec2 as Account', array('local' => 'id', 'foreign' => 'user_id'));
}
}