From 9c4e26e0403889c1ed58b33fb16a01854b869de1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Mon, 28 Dec 2020 08:53:53 +0100 Subject: [PATCH] Remove vote feature Add snippet feature Add donation and site link Add subscription feature --- Resources/config/doctrine/User.orm.yml | 33 +++++++++++++++++++++++--- 1 file changed, 30 insertions(+), 3 deletions(-) diff --git a/Resources/config/doctrine/User.orm.yml b/Resources/config/doctrine/User.orm.yml index 4e05dfd..d1e1336 100644 --- a/Resources/config/doctrine/User.orm.yml +++ b/Resources/config/doctrine/User.orm.yml @@ -6,13 +6,40 @@ Rapsys\AirBundle\Entity\User: phone: type: string length: 16 + nullable: true + donation: + type: string + length: 254 + nullable: true + site: + type: string + length: 254 + nullable: true oneToMany: - votes: - targetEntity: Rapsys\AirBundle\Entity\Vote - mappedBy: user +# votes: +# targetEntity: Rapsys\AirBundle\Entity\Vote +# mappedBy: user applications: targetEntity: Rapsys\AirBundle\Entity\Application mappedBy: user + snippets: + targetEntity: Rapsys\AirBundle\Entity\Snippet + mappedBy: user + manyToMany: + subscribers: + targetEntity: Rapsys\AirBundle\Entity\User + inversedBy: subscriptions + joinTable: + name: subscriptions + joinColumns: + id: + name: user_id + inverseJoinColumns: + id: + name: subscriber_id + subscriptions: + targetEntity: Rapsys\AirBundle\Entity\User + mappedBy: subscribers # manyToMany: # groups: # targetEntity: Group -- 2.41.0