1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/tests_old/models/MyUserOtherThing.php
2008-02-08 17:41:01 +00:00

8 lines
209 B
PHP

<?php
class MyUserOtherThing extends Doctrine_Record {
public function setTableDefinition() {
$this->hasColumn('user_id', 'integer');
$this->hasColumn('other_thing_id', 'integer');
}
}