22 lines
483 B
PHP
22 lines
483 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* This class has been auto-generated by the Doctrine ORM Framework
|
||
|
*/
|
||
|
abstract class BaseUser extends Doctrine_Record
|
||
|
{
|
||
|
|
||
|
public function setTableDefinition()
|
||
|
{
|
||
|
$this->setTableName('user');
|
||
|
$this->hasColumn('username', 'string', 255);
|
||
|
$this->hasColumn('contact_id', 'integer', null);
|
||
|
}
|
||
|
|
||
|
public function setUp()
|
||
|
{
|
||
|
$this->hasOne('Contact', array('local' => 'contact_id',
|
||
|
'foreign' => 'id'));
|
||
|
}
|
||
|
|
||
|
}
|