8 lines
209 B
PHP
8 lines
209 B
PHP
<?php
|
|
class MyUserOtherThing extends Doctrine_Entity {
|
|
public function setTableDefinition() {
|
|
$this->hasColumn('user_id', 'integer');
|
|
$this->hasColumn('other_thing_id', 'integer');
|
|
}
|
|
}
|