31 lines
518 B
PHP
31 lines
518 B
PHP
<?php
|
|
|
|
namespace Doctrine\Tests\Models\CMS;
|
|
|
|
/**
|
|
* @Entity
|
|
* @Table(name="cms_comments")
|
|
*/
|
|
class CmsComment
|
|
{
|
|
/**
|
|
* @Column(type="integer")
|
|
* @Id
|
|
* @GeneratedValue(strategy="AUTO")
|
|
*/
|
|
public $id;
|
|
/**
|
|
* @Column(type="string", length=255)
|
|
*/
|
|
public $topic;
|
|
/**
|
|
* @Column(type="string")
|
|
*/
|
|
public $text;
|
|
/**
|
|
* @ManyToOne(targetEntity="CmsArticle")
|
|
* @JoinColumn(name="article_id", referencedColumnName="id")
|
|
*/
|
|
public $article;
|
|
}
|