X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/df94857cce26f0b56c1cccaf5c5929fa6422efbf..a1bf95f93f8b4954704f82283e09608b8201396c:/Resources/config/doctrine/User.orm.yml diff --git a/Resources/config/doctrine/User.orm.yml b/Resources/config/doctrine/User.orm.yml index a621be7..829fddb 100644 --- a/Resources/config/doctrine/User.orm.yml +++ b/Resources/config/doctrine/User.orm.yml @@ -1,5 +1,7 @@ Rapsys\UserBundle\Entity\User: type: mappedSuperclass + repositoryClass: Rapsys\UserBundle\Repository\UserRepository +# table: users id: id: type: integer @@ -12,22 +14,25 @@ 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 + length: 100 active: type: boolean options: default: true + enable: + type: boolean + options: + default: true created: type: datetime updated: @@ -41,5 +46,13 @@ Rapsys\UserBundle\Entity\User: targetEntity: Group inversedBy: users #see if usefull: https://stackoverflow.com/questions/34523699/how-to-extend-doctrine-entity-in-another-bundle -# joinTable: -# name: groups_users +# joinTable: +# name: users_groups +# joinColumns: +# id: +# name: user_id +# inverseJoinColumns: +# id: +# name: group_id + lifecycleCallbacks: + preUpdate: ['preUpdate']