31 lines
613 B
PHP
31 lines
613 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* This class has been auto-generated by the Doctrine ORM Framework
|
||
|
*/
|
||
|
abstract class BaseUserGroup extends Doctrine_Record
|
||
|
{
|
||
|
|
||
|
public function setTableDefinition()
|
||
|
{
|
||
|
$this->setTableName('user_group');
|
||
|
$this->hasColumn('user_id', 'integer', 4, array('primary' => true));
|
||
|
$this->hasColumn('group_id', 'integer', 4, array('primary' => true));
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
public function setUp()
|
||
|
{
|
||
|
$this->hasOne('User', array('local' => 'user_id',
|
||
|
'foreign' => 'id'));
|
||
|
|
||
|
$this->hasOne('Group', array('local' => 'group_id',
|
||
|
'foreign' => 'id'));
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|