1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/tests/models/forum/ForumAvatar.php
2008-09-12 10:40:23 +00:00

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'
));
}
}
?>