MyOtherThing.php 303 Bytes
Newer Older
1
<?php
2
class MyOtherThing extends Doctrine_Entity {
3 4 5 6 7 8 9 10
    public function setTableDefinition() {
        $this->hasColumn('name', 'string');
        $this->hasColumn('user_id', 'integer');
    }
    public function setUp() {
		$this->hasMany('MyUserOtherThing', 'MyUserOtherThing.other_thing_id');
    }
}