1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/models/Group.php
2007-09-05 04:42:02 +00:00

22 lines
467 B
PHP

<?php
require_once('Entity.php');
// grouptable doesn't extend Doctrine_Table -> Doctrine_Connection
// won't initialize grouptable when Doctrine_Connection->getTable('Group') is called
class GroupTable { }
class Group extends Entity
{
public function setUp()
{
parent::setUp();
$this->hasMany('User', array(
'local' => 'group_id',
'foreign' => 'user_id',
'refClass' => 'Groupuser',
));
}
}