X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/171c75768bcff78173c75d37b8a335ec687654b3..0f4bc81741b145ae935f32fff7e98187be16c58c:/Resources/config/doctrine/User.orm.yml diff --git a/Resources/config/doctrine/User.orm.yml b/Resources/config/doctrine/User.orm.yml index a6a37f3..24300a2 100644 --- a/Resources/config/doctrine/User.orm.yml +++ b/Resources/config/doctrine/User.orm.yml @@ -12,15 +12,14 @@ Rapsys\UserBundle\Entity\User: type: string unique: true length: 254 - pseudonym: - type: string - length: 32 forename: type: string length: 32 + nullable: true surname: type: string length: 32 + nullable: true password: type: string length: 60 @@ -28,13 +27,17 @@ Rapsys\UserBundle\Entity\User: type: boolean options: default: true + enable: + type: boolean + options: + default: true created: type: datetime updated: type: datetime manyToOne: - title: - targetEntity: Title + civility: + targetEntity: Civility inversedBy: users manyToMany: groups: @@ -43,3 +46,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']