1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/tests/Doctrine/Tests/Models/Forum/ForumEntry.php

23 lines
310 B
PHP

<?php
namespace Doctrine\Tests\Models\Forum;
/**
* @Entity
* @Table(name="forum_entries")
*/
class ForumEntry
{
/**
* @Id
* @Column(type="integer")
* @GeneratedValue(strategy="AUTO")
*/
public $id;
/**
* @Column(type="string", length=50)
*/
public $topic;
}