2008-07-20 20:13:24 +00:00
|
|
|
<?php
|
|
|
|
|
2009-01-04 16:15:32 +00:00
|
|
|
#namespace Doctrine\Tests\Models\Forum;
|
2008-07-20 20:13:24 +00:00
|
|
|
|
2009-01-04 16:15:32 +00:00
|
|
|
#use Doctrine\ORM\Entity;
|
2008-07-20 20:13:24 +00:00
|
|
|
|
2009-01-04 16:15:32 +00:00
|
|
|
class ForumEntry implements Doctrine_ORM_Entity
|
2008-07-20 20:13:24 +00:00
|
|
|
{
|
2008-12-18 14:08:11 +00:00
|
|
|
public $id;
|
|
|
|
public $topic;
|
|
|
|
|
2008-07-20 20:13:24 +00:00
|
|
|
public static function initMetadata($mapping)
|
|
|
|
{
|
|
|
|
$mapping->mapField(array(
|
|
|
|
'fieldName' => 'id',
|
|
|
|
'type' => 'integer',
|
|
|
|
'id' => true,
|
2008-07-27 19:38:56 +00:00
|
|
|
'idGenerator' => 'auto'
|
2008-07-20 20:13:24 +00:00
|
|
|
));
|
|
|
|
$mapping->mapField(array(
|
|
|
|
'fieldName' => 'topic',
|
|
|
|
'type' => 'string',
|
|
|
|
'length' => 50
|
|
|
|
));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|