]> Raphaƫl G. Git Repositories - userbundle/blobdiff - Resources/config/doctrine/User.orm.yml
Replace disabled with enable
[userbundle] / Resources / config / doctrine / User.orm.yml
index a6a37f3620aa50fed96a991d72b7700619be2c03..24300a23fcfca5c48d0161c99201abada9ce8195 100644 (file)
@@ -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']