X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/df94857cce26f0b56c1cccaf5c5929fa6422efbf..4d179d12db7cad65f5dc866becda2c0c18bdc0a9:/Resources/config/doctrine/User.orm.yml diff --git a/Resources/config/doctrine/User.orm.yml b/Resources/config/doctrine/User.orm.yml index a621be7..346fdbb 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,6 +27,10 @@ Rapsys\UserBundle\Entity\User: type: boolean options: default: true + disabled: + type: boolean + options: + default: false created: type: datetime updated: @@ -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']