]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/UserBundle/Entity/Group.php
Added migration for user group
[github/wallabag/wallabag.git] / src / Wallabag / UserBundle / Entity / Group.php
CommitLineData
f1900b68
NL
1<?php
2
3namespace Wallabag\UserBundle\Entity;
4
5use FOS\UserBundle\Model\Group as BaseGroup;
6use Doctrine\ORM\Mapping as ORM;
7
8/**
9 * @ORM\Entity
10 * @ORM\Table(name="`group`")
11 */
12class Group extends BaseGroup
13{
14 /**
15 * @ORM\Id
16 * @ORM\Column(type="integer")
17 * @ORM\GeneratedValue(strategy="AUTO")
18 */
19 protected $id;
20}