X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/bab59a4b88a081a7a27a53b4559d74e63b68db92..429d8ea45f4e559bce01c9e6231771d4601c305e:/Resources/config/doctrine/User.orm.yml diff --git a/Resources/config/doctrine/User.orm.yml b/Resources/config/doctrine/User.orm.yml index a6a37f3..e0d9263 100644 --- a/Resources/config/doctrine/User.orm.yml +++ b/Resources/config/doctrine/User.orm.yml @@ -12,9 +12,6 @@ Rapsys\UserBundle\Entity\User: type: string unique: true length: 254 - pseudonym: - type: string - length: 32 forename: type: string length: 32 @@ -28,13 +25,17 @@ Rapsys\UserBundle\Entity\User: type: boolean options: default: true + disabled: + type: boolean + options: + default: false created: type: datetime updated: type: datetime manyToOne: - title: - targetEntity: Title + civility: + targetEntity: Civility inversedBy: users manyToMany: groups: @@ -43,3 +44,5 @@ Rapsys\UserBundle\Entity\User: #see if usefull: https://stackoverflow.com/questions/34523699/how-to-extend-doctrine-entity-in-another-bundle # joinTable: # name: groups_users + lifecycleCallbacks: + preUpdate: ['preUpdate']