aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/UserBundle/Entity/Group.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-09-06 20:21:49 +0200
committerThomas Citharel <tcit@tcit.fr>2017-06-23 09:18:39 +0200
commitf1900b686eb8d7c41a940eede778234ac55086e1 (patch)
tree3282794540fceaecc831fc9c736cecc57dbc1728 /src/Wallabag/UserBundle/Entity/Group.php
parent29714661b1df78871ceaf0e079f11041a8641d4b (diff)
downloadwallabag-f1900b686eb8d7c41a940eede778234ac55086e1.tar.gz
wallabag-f1900b686eb8d7c41a940eede778234ac55086e1.tar.zst
wallabag-f1900b686eb8d7c41a940eede778234ac55086e1.zip
Added migration for user group
Just a first draft of #805
Diffstat (limited to 'src/Wallabag/UserBundle/Entity/Group.php')
-rw-r--r--src/Wallabag/UserBundle/Entity/Group.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/Wallabag/UserBundle/Entity/Group.php b/src/Wallabag/UserBundle/Entity/Group.php
new file mode 100644
index 00000000..9145959d
--- /dev/null
+++ b/src/Wallabag/UserBundle/Entity/Group.php
@@ -0,0 +1,20 @@
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}