2007-09-02 14:24:49 +00:00
|
|
|
<?php
|
2008-05-13 21:20:34 +00:00
|
|
|
class MyUserOtherThing extends Doctrine_Entity {
|
2007-09-02 14:24:49 +00:00
|
|
|
public function setTableDefinition() {
|
|
|
|
$this->hasColumn('user_id', 'integer');
|
|
|
|
$this->hasColumn('other_thing_id', 'integer');
|
|
|
|
}
|
|
|
|
}
|