39 lines
1.8 KiB
PHP
39 lines
1.8 KiB
PHP
<?php
|
|
|
|
/**
|
|
* BaseRequetelog
|
|
*
|
|
* This class has been auto-generated by the Doctrine ORM Framework
|
|
*
|
|
* @property integer $id
|
|
* @property string $login
|
|
* @property string $action
|
|
* @property string $request
|
|
* @property string $transactionIdentifier
|
|
* @property string $sessionID
|
|
* @property string $mode
|
|
* @property timestamp $created_at
|
|
* @property timestamp $updated_at
|
|
*
|
|
* @package ##PACKAGE##
|
|
* @subpackage ##SUBPACKAGE##
|
|
* @author ##NAME## <##EMAIL##>
|
|
* @version SVN: $Id: Builder.php 5441 2009-01-30 22:58:43Z jwage $
|
|
*/
|
|
abstract class BaseRequetelog extends Doctrine_Record
|
|
{
|
|
public function setTableDefinition()
|
|
{
|
|
$this->setTableName('requetelog');
|
|
$this->hasColumn('id', 'integer', 4, array('type' => 'integer', 'length' => 4, 'primary' => true, 'autoincrement' => true));
|
|
$this->hasColumn('login', 'string', 100, array('type' => 'string', 'length' => 100, 'notnull' => true));
|
|
$this->hasColumn('action', 'string', null, array('type' => 'string', 'notnull' => true));
|
|
$this->hasColumn('request', 'string', 500, array('type' => 'string', 'length' => 500, 'notnull' => true));
|
|
$this->hasColumn('transactionIdentifier', 'string', 100, array('type' => 'string', 'length' => 100, 'notnull' => true));
|
|
$this->hasColumn('sessionID', 'string', 100, array('type' => 'string', 'length' => 100, 'notnull' => true));
|
|
$this->hasColumn('mode', 'string', 10, array('type' => 'string', 'length' => 10, 'notnull' => true));
|
|
$this->hasColumn('created_at', 'timestamp', null, array('type' => 'timestamp', 'default' => '0000-00-00 00:00:00', 'notnull' => true));
|
|
$this->hasColumn('updated_at', 'timestamp', null, array('type' => 'timestamp', 'default' => '0000-00-00 00:00:00', 'notnull' => true));
|
|
}
|
|
|
|
} |