30 lines
800 B
PHP
30 lines
800 B
PHP
|
<?php
|
||
|
/*
|
||
|
* Base class; DO NOT EDIT
|
||
|
*
|
||
|
* auto-generated by the sfDoctrine plugin
|
||
|
*/
|
||
|
class BasesfGuardUserPermission extends sfDoctrineRecord
|
||
|
{
|
||
|
|
||
|
|
||
|
public function setTableDefinition()
|
||
|
{
|
||
|
$this->setTableName('sf_guard_user_permission');
|
||
|
|
||
|
$this->hasColumn('created_at', 'timestamp', null, array ());
|
||
|
$this->hasColumn('updated_at', 'timestamp', null, array ());
|
||
|
$this->hasColumn('user_id', 'integer', 4, array ( 'primary' => true,));
|
||
|
$this->hasColumn('permission_id', 'integer', 4, array ( 'primary' => true,));
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
public function setUp()
|
||
|
{
|
||
|
$this->hasOne('sfGuardUser as sfGuardUser', array('local' => 'user_id', 'foreign' => 'id'));
|
||
|
$this->hasOne('sfGuardPermission as sfGuardPermission', array('local' => 'permission_id', 'foreign' => 'id'));
|
||
|
}
|
||
|
|
||
|
}
|