fixed small bug in the many2many example
This commit is contained in:
parent
c5291aedd7
commit
f23b69f6dc
1 changed files with 5 additions and 4 deletions
|
@ -161,12 +161,13 @@ class User extends Doctrine_Record
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class Group extends Doctrine_Record {
|
class Group extends Doctrine_Record
|
||||||
|
{
|
||||||
public function setUp() {
|
public function setUp() {
|
||||||
$this->hasMany('Group', array('local' => 'group_id',
|
$this->hasMany('User', array('local' => 'group_id',
|
||||||
'foreign' => 'user_id',
|
'foreign' => 'user_id',
|
||||||
// the following line is needed in many-to-many relations!
|
// the following line is needed in many-to-many relations!
|
||||||
'refClass' => 'GroupUser'));
|
'refClass' => 'GroupUser'));
|
||||||
}
|
}
|
||||||
public function setTableDefinition() {
|
public function setTableDefinition() {
|
||||||
$this->hasColumn('name', 'string', 30);
|
$this->hasColumn('name', 'string', 30);
|
||||||
|
|
Loading…
Add table
Reference in a new issue