39 lines
1.8 KiB
PHP
Raw Normal View History

2009-05-06 07:53:28 +00:00
<?php
/**
2009-05-11 10:07:58 +00:00
* BaseRequetelog
2009-05-06 07:53:28 +00:00
*
* This class has been auto-generated by the Doctrine ORM Framework
*
* @property integer $id
2009-05-07 09:32:28 +00:00
* @property string $login
2009-05-06 07:53:28 +00:00
* @property string $action
2009-05-11 10:07:58 +00:00
* @property string $request
* @property string $transactionIdentifier
* @property string $sessionID
2009-05-11 10:07:58 +00:00
* @property string $mode
2009-05-07 09:32:28 +00:00
* @property timestamp $created_at
* @property timestamp $updated_at
2009-05-06 07:53:28 +00:00
*
* @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
2009-05-06 07:53:28 +00:00
{
public function setTableDefinition()
{
$this->setTableName('requetelog');
2009-05-06 07:53:28 +00:00
$this->hasColumn('id', 'integer', 4, array('type' => 'integer', 'length' => 4, 'primary' => true, 'autoincrement' => true));
2009-05-07 09:32:28 +00:00
$this->hasColumn('login', 'string', 100, array('type' => 'string', 'length' => 100, 'notnull' => true));
2009-05-06 07:53:28 +00:00
$this->hasColumn('action', 'string', null, array('type' => 'string', 'notnull' => true));
2009-05-11 10:07:58 +00:00
$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));
2009-05-11 10:07:58 +00:00
$this->hasColumn('mode', 'string', 10, array('type' => 'string', 'length' => 10, 'notnull' => true));
2009-05-07 09:32:28 +00:00
$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));
2009-05-06 07:53:28 +00:00
}
2009-05-06 07:53:28 +00:00
}