FilterTest.php 257 Bytes
Newer Older
1
<?php
2
class FilterTest extends Doctrine_Entity {
3 4 5
    public static function initMetadata($class) {
        $class->setColumn('name', 'string',100);
        $class->hasMany('FilterTest2 as filtered', array('local' => 'id', 'foreign' => 'test1_id'));
6 7
    }
}