2007-09-02 18:24:49 +04:00
|
|
|
<?php
|
2008-05-14 01:20:34 +04:00
|
|
|
class M2MTest2 extends Doctrine_Entity {
|
2008-02-04 00:29:57 +03:00
|
|
|
public static function initMetadata($class) {
|
|
|
|
$class->setColumn('oid', 'integer', 11, array('autoincrement', 'primary'));
|
|
|
|
$class->setColumn('name', 'string', 20);
|
|
|
|
$class->hasMany('RTC4 as RTC5', array('local' => 'c2_id', 'foreign' => 'c1_id', 'refClass' => 'JC1'));
|
2007-09-02 18:24:49 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|