From 97a4f8640e809386ab5e5f49be9de63e52fdca95 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Tue, 4 Oct 2022 09:49:07 +0200 Subject: [PATCH] Add country, city and zipcode member Drop slug member --- Resources/config/doctrine/User.orm.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/Resources/config/doctrine/User.orm.yml b/Resources/config/doctrine/User.orm.yml index 8a9b7de..b6161cb 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 @@ -60,6 +63,10 @@ Rapsys\AirBundle\Entity\User: inverseJoinColumns: id: name: location_id + manyToOne: + country: + targetEntity: Rapsys\AirBundle\Entity\Country + inversedBy: users # manyToMany: # groups: # targetEntity: Group -- 2.41.0