* @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)); } }