1
0
mirror of synced 2025-01-18 22:41:43 +03:00
2012-06-18 14:42:56 -03:00

29 lines
397 B
PHP

<?php
namespace Doctrine\Tests\Models\Quote;
/**
* @Entity
* @Table(name="`quote-group`")
*/
class Group
{
/**
* @Id
* @GeneratedValue
* @Column(type="integer", name="`group-id`")
*/
public $id;
/**
* @Column(name="`group-name`")
*/
public $name;
/**
* @ManyToMany(targetEntity="User", mappedBy="groups")
*/
public $users;
}