X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/bab59a4b88a081a7a27a53b4559d74e63b68db92..88156f960e7fe0e6dd9c5c689aea46e63845029b:/Resources/config/doctrine/User.orm.yml diff --git a/Resources/config/doctrine/User.orm.yml b/Resources/config/doctrine/User.orm.yml index a6a37f3..deec537 100644 --- a/Resources/config/doctrine/User.orm.yml +++ b/Resources/config/doctrine/User.orm.yml @@ -24,17 +24,26 @@ Rapsys\UserBundle\Entity\User: password: type: string length: 60 + slug: + type: string + unique: true + length: 32 + nullable: true active: 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 +52,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']