29 lines
504 B
PHP
Executable File
29 lines
504 B
PHP
Executable File
<?php
|
|
|
|
#namespace Doctrine\Tests\Models\CMS;
|
|
|
|
/**
|
|
* @DoctrineEntity
|
|
*/
|
|
class CmsComment
|
|
{
|
|
/**
|
|
* @DoctrineColumn(type="integer")
|
|
* @DoctrineId
|
|
* @DoctrineIdGenerator("auto")
|
|
*/
|
|
public $id;
|
|
/**
|
|
* @DoctrineColumn(type="varchar", length=255)
|
|
*/
|
|
public $topic;
|
|
/**
|
|
* @DoctrineColumn(type="varchar")
|
|
*/
|
|
public $text;
|
|
/**
|
|
* @DoctrineManyToOne(targetEntity="CmsArticle", joinColumns={"article_id" = "id"})
|
|
*/
|
|
public $article;
|
|
}
|