X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/df94857cce26f0b56c1cccaf5c5929fa6422efbf..c7b85c37453e97a5234a061b701f8250b86a1a4b:/Resources/config/doctrine/User.orm.yml?ds=sidebyside

diff --git a/Resources/config/doctrine/User.orm.yml b/Resources/config/doctrine/User.orm.yml
index a621be7..e0d9263 100644
--- a/Resources/config/doctrine/User.orm.yml
+++ b/Resources/config/doctrine/User.orm.yml
@@ -12,9 +12,6 @@ Rapsys\UserBundle\Entity\User:
             type: string
             unique: true
             length: 254
-        pseudonym:
-            type: string
-            length: 32
         forename:
             type: string
             length: 32
@@ -28,6 +25,10 @@ Rapsys\UserBundle\Entity\User:
             type: boolean
             options:
                 default: true
+        disabled:
+            type: boolean
+            options:
+                default: false
         created:
             type: datetime
         updated:
@@ -43,3 +44,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']