2008-08-16 23:40:59 +04:00
|
|
|
<?php
|
|
|
|
|
2008-09-12 14:40:23 +04:00
|
|
|
class ForumAvatar extends Doctrine_ORM_Entity
|
2008-08-16 23:40:59 +04:00
|
|
|
{
|
|
|
|
|
|
|
|
public static function initMetadata($mapping)
|
|
|
|
{
|
|
|
|
$mapping->mapField(array(
|
|
|
|
'fieldName' => 'id',
|
|
|
|
'type' => 'integer',
|
|
|
|
'length' => 4,
|
|
|
|
'id' => true,
|
|
|
|
'idGenerator' => 'auto'
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
?>
|