20 lines
335 B
PHP
20 lines
335 B
PHP
<?php
|
|
|
|
class ForumAvatar extends Doctrine_ORM_Entity
|
|
{
|
|
|
|
public static function initMetadata($mapping)
|
|
{
|
|
$mapping->mapField(array(
|
|
'fieldName' => 'id',
|
|
'type' => 'integer',
|
|
'length' => 4,
|
|
'id' => true,
|
|
'idGenerator' => 'auto'
|
|
));
|
|
}
|
|
|
|
}
|
|
|
|
|
|
?>
|