14 lines
534 B
PHP
14 lines
534 B
PHP
|
<?php
|
||
|
Class rapport extends Doctrine_Record
|
||
|
{
|
||
|
function setTableDefinition()
|
||
|
{
|
||
|
$this->setTableName('rapport');
|
||
|
|
||
|
$this->hasColumn('RapportId', 'integer', 11, array('primary' => true,'notnull' => true));
|
||
|
$this->hasColumn('CompanyId', 'integer', 11, 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));
|
||
|
}
|
||
|
}
|