15 lines
607 B
PHP
Raw Normal View History

<?php
Class rapport extends Doctrine_Record
{
function setTableDefinition()
{
$this->setTableName('rapport');
$this->hasColumn('RapportId', 'integer', 11, array('primary' => true,'notnull' => true));
2011-04-08 15:40:51 +00:00
$this->hasColumn('CompanyId', 'varchar', 255, array('notnull' => true));
$this->hasColumn('DataSetType', 'varchar', 50, array('notnull' => true));
$this->hasColumn('UrlObjectRapportFile', 'blob', null, array('notnull'=> true));
$this->hasColumn('DateTimeSave', 'date', null, array('notnull'=> true));
$this->hasColumn('Delivred', 'bool', null, array('notnull'=> true));
}
}