1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/tests/models/forum/ForumAvatar.php

20 lines
335 B
PHP
Raw Normal View History

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