From: Raphaƫl Gertz Date: Mon, 28 Dec 2020 07:53:53 +0000 (+0100) Subject: Remove vote feature X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/9c4e26e0403889c1ed58b33fb16a01854b869de1 Remove vote feature Add snippet feature Add donation and site link Add subscription feature --- 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