11 lines
303 B
PHP
11 lines
303 B
PHP
<?php
|
|
class MyOtherThing extends Doctrine_Entity {
|
|
public function setTableDefinition() {
|
|
$this->hasColumn('name', 'string');
|
|
$this->hasColumn('user_id', 'integer');
|
|
}
|
|
public function setUp() {
|
|
$this->hasMany('MyUserOtherThing', 'MyUserOtherThing.other_thing_id');
|
|
}
|
|
}
|