X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/203ddae63c75e560f0afc7b4ee4ea289a51a72a6..refs/heads/master:/Resources/config/doctrine/User.orm.yml diff --git a/Resources/config/doctrine/User.orm.yml b/Resources/config/doctrine/User.orm.yml deleted file mode 100644 index e0d9263..0000000 --- a/Resources/config/doctrine/User.orm.yml +++ /dev/null @@ -1,48 +0,0 @@ -Rapsys\UserBundle\Entity\User: - type: mappedSuperclass - id: - id: - type: integer - generator: - strategy: AUTO - options: - unsigned: true - fields: - mail: - type: string - unique: true - length: 254 - forename: - type: string - length: 32 - surname: - type: string - length: 32 - password: - type: string - length: 60 - active: - type: boolean - options: - default: true - disabled: - type: boolean - options: - default: false - created: - type: datetime - updated: - type: datetime - manyToOne: - civility: - targetEntity: Civility - inversedBy: users - manyToMany: - groups: - targetEntity: Group - inversedBy: users -#see if usefull: https://stackoverflow.com/questions/34523699/how-to-extend-doctrine-entity-in-another-bundle -# joinTable: -# name: groups_users - lifecycleCallbacks: - preUpdate: ['preUpdate']