1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/tests_old/models/MyOtherThing.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');
}
}