2007-04-14 01:49:11 +04:00
|
|
|
Self-referencing with join tables is done as follows:
|
2007-04-13 00:52:30 +04:00
|
|
|
|
2007-04-14 01:49:11 +04:00
|
|
|
<code type="php">
|
|
|
|
class User extends Doctrine_Record {
|
|
|
|
public function setUp() {
|
|
|
|
$this->hasMany('User as Friend','UserReference.user_id-user_id2');
|
|
|
|
}
|
|
|
|
public function setTableDefinition() {
|
|
|
|
$this->hasColumn('name','string',30);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
class UserReference extends Doctrine_Record {
|
|
|
|
public function setTableDefinition() {
|
|
|
|
$this->hasColumn('user_id','integer');
|
|
|
|
$this->hasColumn('user_id2','integer');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</code>
|