X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/9a0da79286b2454f4db7b160594fe45808f7c21b..b93d6f12c16fed0b74441123a9c473c04732b1ff:/Resources/config/doctrine/User.orm.yml diff --git a/Resources/config/doctrine/User.orm.yml b/Resources/config/doctrine/User.orm.yml index 8a9b7de..cd5d307 100644 --- a/Resources/config/doctrine/User.orm.yml +++ b/Resources/config/doctrine/User.orm.yml @@ -3,19 +3,22 @@ Rapsys\AirBundle\Entity\User: repositoryClass: Rapsys\AirBundle\Repository\UserRepository table: users fields: - pseudonym: + city: type: string - length: 32 + length: 64 nullable: true phone: type: string length: 16 nullable: true - slug: + pseudonym: type: string - unique: true length: 32 nullable: true + zipcode: + type: string + length: 5 + nullable: true oneToMany: applications: targetEntity: Rapsys\AirBundle\Entity\Application @@ -23,6 +26,9 @@ Rapsys\AirBundle\Entity\User: snippets: targetEntity: Rapsys\AirBundle\Entity\Snippet mappedBy: user + googleTokens: + targetEntity: Rapsys\AirBundle\Entity\GoogleToken + mappedBy: user manyToMany: dances: targetEntity: Rapsys\AirBundle\Entity\Dance @@ -60,6 +66,10 @@ Rapsys\AirBundle\Entity\User: inverseJoinColumns: id: name: location_id + manyToOne: + country: + targetEntity: Rapsys\AirBundle\Entity\Country + inversedBy: users # manyToMany: # groups: # targetEntity: Group