1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/models/MyUserOtherThing.php

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');
}
}